print_documentation/
print_documentation.rs

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();
}