Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 500 Bytes

repl.md

File metadata and controls

22 lines (16 loc) · 500 Bytes

REPL

Read-Eval-Print-Loop or REPL is an interactive computer programming environment that takes a user input, reads it, evaluates it, returns a result to the user.

Command line shells are examples of REPL.

$ node
$ node
>
$ node
> 1 + 3
4

Online REPLs are also available, such as Immutable.js or Babel