>
"Vlad Dumitrescu" <> writes: > Has anyone been toying with implementing a Lisp interpreter in Erlang? It's not > difficult, I know, but why duplicate effort? :-) [Sound of a hundred people looking through their ~/src directories..] I have a toy Scheme in the Jungerl:
:~/hacking/jungerl$ bin/lersp lersp> (define (add-one x) (+ x 1)) true lersp> (add-one 41) 42