Crate calypso_repl
source ·Structs
A struct for doing REPL-like activities.
This does not necessarily need to fit the exact definition of REPL (Read, Eval, Print, Loop).
Type Definitions
A closure that evaluates some input with some context type,
and returns either
Some(String)
or None
. None
indicates to the
REPL handler that it should break the loop.