roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use roto::Runtime;

fn main() {
    #[cfg(feature = "logger")]
    env_logger::builder()
        .format_timestamp(None)
        .format_target(false)
        .init();

    let mut rt = Runtime::new();
    rt.add_io_functions();
    rt.cli();
}