Computing (FOLDOC) dictionary
Jump to user comments
language, LISP, programming (REPL) A programming
structure evaluates it, and displays the result.
shell that programmers of the LISP family of languages
interact with.
In many dialects of LISP a very simple REPL could be
implemented as:
(loop (print (eval (read)))).
(2003-06-23)