Skip to content
/ rua Public

An experimental Lua 5.4 VM implemented in pure Rust.

License

Notifications You must be signed in to change notification settings

Guo-Shiyu/rua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rua

An (under development) Lua 5.4 VM implemented in pure Rust.

Quick Start

    let mut vm = State::new();
    vm.open(StdLib::Base);

    let src = r#"
        print "Hello Rua!"
    "#;
    
    let res = vm.script(src);
    assert!(res.is_ok());

License

MIT License

About

An experimental Lua 5.4 VM implemented in pure Rust.

Topics

Resources

License

Stars

Watchers

Forks