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();
|
|
|
|
|
2017-12-21 12:28:59 +01:00
|
|
|
assert!(engine.eval_with_scope::<()>(&mut scope, "let x = 4 + 5").is_ok());
|
2016-03-04 14:45:43 +01:00
|
|
|
|
2016-04-14 03:40:06 +02: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 14:45:43 +01:00
|
|
|
}
|
|
|
|
}
|