stackr-rs 0.1.14

A stack-based interpreter to be embedded in your application. Heavily inspired by Forth.
Documentation
1
2
3
4
5
6
7
8
9
10
use stackr_rs::*;

fn main() {
    println!("This is how you print documentation");
    let code = r#"
    documentation
    "#;
    let mut interpreter = Interpreter::new(());
    interpreter.evaluate(code, None).unwrap();
}