15 lines
367 B
Rust
15 lines
367 B
Rust
extern crate rhai;
|
|
use rhai::{Engine, Scope};
|
|
|
|
fn main() {
|
|
let mut engine = Engine::new();
|
|
let mut scope: Scope = Vec::new();
|
|
|
|
if let Ok(_) = engine.eval_with_scope::<()>(&mut scope, "var x = 4 + 5") { } else { assert!(false); }
|
|
|
|
if let Ok(result) = engine.eval_with_scope::<i32>(&mut scope, "x") {
|
|
println!("result: {}", result);
|
|
}
|
|
}
|
|
|