Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

read-eval-print loop

You are here: irt.org | FOLDOC | read-eval-print loop

<language, LISP, programming> (REPL) A programming structure within LISP which repeatedly reads a form from the user, evaluates it, and displays the result.

A read-eval-print loop forms the basis of the Top-Level 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)

Nearby terms: RDS « RE « re « read-eval-print loop » README file » Read-Only Memory » read-only user

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb