fakelua 0.0.1

Another LuaJIT implemented with Rust and GCC JIT
Documentation
1
2
3
4
5
6
7
8
extern crate fakelua;

use fakelua::fakelua_newstate;

fn main() {
    fakelua_newstate();
    println!("Hello, world!");
}