[erlang-questions] Killer Erlang tools

Brad Anderson brad@REDACTED
Tue Jun 12 17:52:33 CEST 2007


Joel Reymont wrote:
> Last but not least, I want to run  
> Lisp on the Erlang VM.

do_map(Pid, 0)      -> Pid ! {0, io_lib:format(template(0), phrase(0))};
do_map(Pid, Bottle) -> Pid ! {Bottle, io_lib:format(template(Bottle),
phrase(Bottle))}.

becomes

(elet
   (do_map (pid 0)
     (send pid (tuple (0 (io_lib:format (template 0) (phrase 0))))))
   (do_map (pid bottle)
     (send pid (tuple (bottle (io_lib:format (template bottle) (phrase
bottle)))))))


Am I close?  :)

from: http://bc.tech.coop/blog/070520.html

Also, unfortunately, elisp and erlisp are taken...

BA



More information about the erlang-questions mailing list