summaryrefslogblamecommitdiffstats
path: root/main.rs
blob: b96119c08cc7e8844d158d57d04dbd8a31d7bf77 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                



                                    
 
extern mod lua;

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