rhai/examples/simple_fn.rs

17 lines
303 B
Rust
Raw Normal View History

extern crate rhai;
use rhai::{Engine, FnRegister};
fn add(x: i32, y: i32) -> i32 {
x + y
}
fn main() {
let mut engine = Engine::new();
engine.register_fn("add", add);
2016-03-16 23:32:05 +01:00
if let Ok(result) = engine.eval::<i32>("add(40, 2)") {
println!("Answer: {}", result); // prints 42
}
}