Crate for interfacing with LuaJIT from Rust, for running high-performance Lua code that can integrate with native-code written in rust.
```rust extern crate luajit;
use luajit::State;
pub fn main() { let mut state = State::new(); state.openlibs(); state.dostring(r#"print("Hello world!")"#); } ```