fix readme
This commit is contained in:
10
sandbox.lua
Normal file
10
sandbox.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
function sandbox(func)
|
||||
local co = coroutine.create(func)
|
||||
local hook = function() coroutine.yield('resource used too many cycles') end
|
||||
|
||||
debug.setupvalue(func, 1, _G)
|
||||
debug.sethook(co, hook, "", 100)
|
||||
|
||||
coroutine.resume(co)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user