scheme - Does the Church programming language work on Windows? -


has gotten church programming language work on windows? followed directions here , wasn't able run examples in tutorial in obvious way. used ikarus although quite satisfied use plt scheme (now racket) if there clear way it.

for example, although i'm able run

ikarus --r6rs-script test/church-test-suite.ss 

at end of installation instructions, i'm not able run file containing

(import (church))  ;; sample few church primitives (church  (define mean (gaussian 0 1))  (define var (abs (gaussian 0 1)))  (gaussian mean var)  (flip 0.5)  ) (exit) 

which first example in getting started mit-church section, either if run

ikarus --r6rs-script test/my-test.ss 

or

ikarus test/my-test.ss 

i've found can run particular example if abuse header test suite, doesn't hold of further examples in section.

normally suspect bad library path on side, echo looks good:

$ echo $ikarus_library_path /cygdrive/c/mit-church:/cygdrive/c/mit-church/include 

and, mentioned before, test cases run.

i've asked question in the talk page installation on wiki, , i'll see results of either forum cross-posted.


Comments

Popular posts from this blog

Cursor error with postgresql, pgpool and php -

c# - how to write client side events functions for the combobox items -