rhai/examples/reuse_scope.rs

15 lines
367 B
Rust
Raw Normal View History

2016-03-04 14:45:43 +01:00
extern crate rhai;
use rhai::{Engine, Scope};
fn main() {
let mut engine = Engine::new();
let mut scope: Scope = Vec::new();
2016-03-16 23:32:05 +01:00
if let Ok(_) = engine.eval_with_scope::<()>(&mut scope, "var x = 4 + 5") { } else { assert!(false); }
2016-03-04 14:45:43 +01:00
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval_with_scope::<i32>(&mut scope, "x") {
2016-03-04 14:45:43 +01:00
println!("result: {}", result);
}
}