rhai/examples/simple_fn.rs

16 lines
296 B
Rust
Raw Normal View History

2017-12-20 21:09:53 +01:00
use rhai::{Engine, RegisterFn};
fn main() {
let mut engine = Engine::new();
2020-03-02 08:19:59 +01:00
fn add(x: i64, y: i64) -> i64 {
x + y
}
engine.register_fn("add", add);
2020-03-02 08:19:59 +01:00
2017-12-20 14:35:44 +01:00
if let Ok(result) = engine.eval::<i64>("add(40, 2)") {
println!("Answer: {}", result); // prints 42
}
}