microZEUS
The whole stack, hand-drawn.

◄ Wiki / Build

REPL

An interactive prompt where you type code, it runs immediately, and shows the result — then repeats.

Read-Eval-Print Loop describes the cycle: read your input, evaluate it, print the result, loop back for more. It's the interactive shell familiar from Python or a language console, letting you experiment one expression at a time without writing and compiling a whole program. It's a fast way to explore and test ideas.