move lua component
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
7
components/lua-5.1.4/test/luac.lua
Normal file
7
components/lua-5.1.4/test/luac.lua
Normal file
@@ -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())
|
||||
Reference in New Issue
Block a user