Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lua-5.1-rc/test/luac.lua')
-rw-r--r--lua-5.1-rc/test/luac.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/lua-5.1-rc/test/luac.lua b/lua-5.1-rc/test/luac.lua
new file mode 100644
index 0000000..96a0a97
--- /dev/null
+++ b/lua-5.1-rc/test/luac.lua
@@ -0,0 +1,7 @@
+-- bare-bones luac in Lua
+-- usage: lua luac.lua file.lua
+
+assert(arg[1]~=nil and arg[2]==nil,"usage: lua luac.lua file.lua")
+f=assert(io.open("luac.out","wb"))
+assert(f:write(string.dump(assert(loadfile(arg[1])))))
+assert(f:close())