AlexNisnevich / ECMAchine

Lisp-based in-browser toy operating system
http://alex.nisnevich.com/ecmachine/
201 stars 14 forks source link

Support for backquote and unquote? #13

Open davep opened 12 years ago

davep commented 12 years ago

Is it planned to provide backquote and unquote support? For example:

> (define a 23)
> `(this is the number ,a)
(this is the number 23)

vs

ecmachine:/ guest$ (define a 23)
ecmachine:/ guest$ `(this is the number ,a)
[USER]: Eval Error: Unbound variable `(this is the number ,a)
AlexNisnevich commented 12 years ago

I'd like to, but it seems like it could be difficult to implement.