rhai 0.8.2

Embedded scripting for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use engine::Engine;

#[test]
fn test_increment() {
    let mut engine = Engine::new();

    if let Ok(result) = engine.eval::<i64>("let x = 1; x += 2; x") {
        assert_eq!(result, 3);
    } else {
        assert!(false);
    }

    if let Ok(result) = engine.eval::<String>("let s = \"test\"; s += \"ing\"; s") {
        assert_eq!(result, "testing".to_owned());
    } else {
        assert!(false);
    }
}