repl_framework 0.3.0

A crate to easily create simple repls
Documentation

repl_framework

An easy to use repl creation library

quickstart

use repl_framework::Repl;
fn main() -> std::io::Result<()>{
    Repl::default().with_function("Hello", hello).run()
}
fn hello(_: &mut (), _: Vec<String>) {
    println!("Hello World")
}