third 0.1.0

Script language for Rust
Documentation
1
2
3
4
5
6
use third::Engine;

fn main() {
    let source = "print nil;";
    Engine::new().run(source);
}