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

luac.lua « test « lua-5.1-rc - github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96a0a97ce7aa2704c9b8b409bcc14f1a80c746ca (plain)
1
2
3
4
5
6
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())