summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/lua/test/luac.lua
blob: 96a0a97ce7aa2704c9b8b409bcc14f1a80c746ca (plain) (blame)
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())