Geomol / World

World Programming Language
http://world-lang.org
22 stars 7 forks source link

Explicit block compilation does not work #4

Closed earl closed 12 years ago

earl commented 12 years ago

Implicit compilation of blocks (via do) works fine:

w> x: 42 
== 42
w> c1: [x]
== [x]
w> do c1
== 42

Explicit compilation, however, does not:

w> c2: [x]
== [x]
w> compile c2
== [x]
w> compiled? c2 
== true
w> do c2
== [x] ;; expected: 42
Geomol commented 12 years ago

Works now.

earl commented 12 years ago

Great!