rhai/examples/hello.rs

14 lines
283 B
Rust
Raw Normal View History

2020-10-07 15:52:24 +08:00
use rhai::{Engine, EvalAltResult, INT};
fn main() -> Result<(), Box<EvalAltResult>> {
2020-10-07 15:52:24 +08:00
let engine = Engine::new();
2021-02-20 23:46:25 +08:00
engine.consume(r#"print("hello, world!")"#)?;
2020-03-24 09:49:08 +08:00
let result = engine.eval::<INT>("40 + 2")?;
2020-03-09 16:54:43 +08:00
println!("Answer: {}", result); // prints 42
Ok(())
2017-12-20 12:16:14 +01:00
}