1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2015年1月6日 |
---|
784 在 编程语言
4KB
74 行
Rust的Wren
使用
extern crate wren;
use std::default::Default;
use wren::{VM, Error};
fn main() {
let source = r#"
class Unicorn {
hasHorn {
return true
}
}
"#;
let vm = VM::new(Default::default()); // loads the VM with the default VM config
match vm.interpret("Test", source) {
Err(Error::CompileError(msg)) => println!("Compile Error: {}", msg),
Err(Error::RuntimeError(msg)) => println!("Runtime Error: {}", msg),
Err(Error::UnknownError(msg)) => println!("Unknown Error: {}", msg),
_ => println!("Successfully ran wren source"),
}
}