添加lua+luatinker

This commit is contained in:
2025-09-01 22:48:13 +08:00
parent 12c51b5ddb
commit 1fb319f0e8
108 changed files with 30276 additions and 0 deletions
+7
View 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())