Expand description
This crate provides a REPL (Read-Eval-Print Loop) environment for the mq, allowing for interactive execution of mq code.
The REPL supports:
- Interactive command evaluation
- History navigation
- Code execution in a persistent environment
§Example
use mq_repl::Repl;
let repl = mq_repl::Repl::new(vec![mq_lang::RuntimeValue::String("".to_string())]);
repl.run().unwrap();