Page 1 of 1

How to write a good REPL

Posted: Wed May 07, 2014 8:30 am
by porky11
I want to have a REPL like the one in clisp, that I can call as a function myself.

Where do I get lisp code of such a REPL that I can modify etc. ?

Re: How to write a good REPL

Posted: Sat May 10, 2014 1:55 pm
by Goheeca
Here is a source of clisp REPL: http://clisp.cvs.sourceforge.net/viewvc ... ploop.lisp. Usually it's very entangled with low-level implementation-dependent functions of the given CL implementation. I've been playing with ABCL in the same manner to make it run as an applet and it's not easy to create a proper REPL, but when I've found out there exist issues with the java security policy my enthusiasm dropped.