From WikiChip
read-eval-print loop
Revision as of 15:15, 19 January 2015 by 70.116.46.165 (talk) (Created page with "'''Read-Eval-Print Loop''' ('''REPL'''), also known as a '''language shell''', is a common interactive interpreter model whereby a single user input (e.g. a single expressio...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Read-Eval-Print Loop (REPL), also known as a language shell, is a common interactive interpreter model whereby a single user input (e.g. a single expression) is read, evaluated, and the result is printed back. The operation is then repeated endlessly until the user terminates the loop.