rhai/examples/reuse_scope.rs

15 lines
331 B
Rust
Raw Normal View History

2016-03-04 08:45:43 -05:00
use rhai::{Engine, Scope};
fn main() {
let mut engine = Engine::new();
2019-09-18 11:21:07 +01:00
let mut scope = Scope::new();
2016-03-04 08:45:43 -05:00
2019-09-18 11:21:07 +01:00
assert!(engine
.eval_with_scope::<()>(&mut scope, "let x = 4 + 5")
.is_ok());
2016-03-04 08:45:43 -05:00
2016-04-13 18:40:06 -07:00
if let Ok(result) = engine.eval_with_scope::<i64>(&mut scope, "x") {
2017-12-20 12:16:14 +01:00
println!("result: {}", result);
2016-03-04 08:45:43 -05:00
}
}