AM
The unit of compilation of Lua is called a chunk
break вроде только из циклов выходит
while 1 do do do break end end end
( не проверял, но удивлюсь если несработает )
Size: a a a
AM
The unit of compilation of Lua is called a chunk
while 1 do do do break end end end
DS
S
S
IS
function love.tick()
love.update()
love.draw()
end
S
S
IS
run
вроде вообще убрали?S
S
IS
S
z
S
IS
require('lib')
-- require('lib')
IS
IS
-- Another file can use mod.lua's functionality:
local mod = require('mod') -- Run the file mod.lua.
-- require is the standard way to include modules.
-- require acts like: (if not cached; see below)
local mod = (function ()
<contents of mod.lua>
end)()
-- It's like mod.lua is a function body, so that
-- locals inside mod.lua are invisible outside it.
IS
IS