God knows what's modified

This commit is contained in:
2021-01-02 13:31:18 -05:00
parent c751678179
commit b03aada315
22 changed files with 1577 additions and 294 deletions

20
luprex/syslua/utils.lua Normal file
View File

@@ -0,0 +1,20 @@
function rununittests(tab)
for k, v in pairs(tab) do
v()
end
end
function crash2()
local tab = nil
tab[3] = 1
end
function crash1()
crash2()
end
function doyield()
coroutine.yield()
end