summaryrefslogtreecommitdiffstats
path: root/main.rs
blob: 1e50e6fe20df8380ed18702c0f28638d5326a842 (plain) (blame)
1
2
3
4
5
6
7
8
9
extern mod lua;

fn main() {
    let state = lua::newstate();
    lua::openlibs(state);
    lua::loadstring(state, os::args()[1]);
    lua::call(state, 0, 0);
    lua::close(state);
}