Table of Contents

Interactive Programming - REPL “read-eval-print loop” execution paradigm

About

REPL (an acronym for “read-eval-print loop”) is a execution paradigm implemented in a command line interpreter that:

A REPL console is a synonym for a command line interpreter.

Implementation

Steps:

while True:
    code = input(">>> ")
    exec(code)

it’s much more complex, because it has to deal with:

Library

Implementation

Java:

C:

Recorder

Documentation / Reference

Source Example

Base docker image

Blog