repl_framework

Crates.iorepl_framework
lib.rsrepl_framework
version0.3.0
sourcesrc
created_at2021-04-10 07:22:15.890757
updated_at2021-11-11 13:33:24.169828
descriptionA crate to easily create simple repls
homepage
repositoryhttps://github.com/SuKiN-a/repl_framework
max_upload_size
id381622
size21,281
(SuKiN-a)

documentation

README

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")
}
Commit count: 44

cargo fmt