11 · The Command Line

REPL

An interactive code prompt

Read-Eval-Print Loop — an interactive prompt where you type code and see it run line by line. Typing “python” or “node” with no file drops you into one.

Concrete example

Run “python” in the terminal and you can test a snippet instantly, no file needed.