Closed timowest closed 11 years ago
Closures in Extempore make the context editable. This could be supported by converting structures similar to the following
(let [a ... b ...] (fn [] ...))
into
(do (defstruct structX (a typeA) (b typeB) (apply (method ...)) (structX. ...))
Extempore : https://github.com/digego/extempore
Dropping this for now, I will try to implement a subset of deftype declarations instead.
Closures in Extempore make the context editable. This could be supported by converting structures similar to the following
into
Extempore : https://github.com/digego/extempore