lua 0.0.2

Bindings to Lua 5.3
1
2
3
4
5
6
use std::io::Command;

fn main() {
  Command::new("sh").arg("prebuild.sh").status().unwrap();
}