rhai/examples/simple_fn.rs

20 lines
379 B
Rust
Raw Normal View History

2022-02-12 05:41:04 +01:00
//! An example showing how to register a simple Rust function.
use rhai::{Engine, EvalAltResult};
fn add(x: i64, y: i64) -> i64 {
2020-10-07 09:55:45 +02:00
x + y
}
fn main() -> Result<(), Box<EvalAltResult>> {
let mut engine = Engine::new();
engine.register_fn("add", add);
2020-03-02 08:19:59 +01:00
let result = engine.eval::<i64>("add(40, 2)")?;
2020-03-09 09:54:43 +01:00
println!("Answer: {result}"); // prints 42
2020-03-09 09:54:43 +01:00
Ok(())
}