summaryrefslogtreecommitdiffstats
path: root/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'main.rs')
-rw-r--r--main.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.rs b/main.rs
index 1e50e6f..b96119c 100644
--- a/main.rs
+++ b/main.rs
@@ -2,8 +2,8 @@ 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);
+ state.openlibs();
+ state.loadstring(os::args()[1]);
+ state.call(0, 0);
+ state.close();
}