mirror of
https://github.com/DaKerboul/perun.git
synced 2026-08-09 17:55:38 +02:00
Changes after dll integration
This commit is contained in:
7
03_Perun_Lua_Wrapper/lua-5.1.5/test/luac.lua
Normal file
7
03_Perun_Lua_Wrapper/lua-5.1.5/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