lua:scripting
This is an old revision of the document!
Lua
Cheat sheet
-- Loops i = 1 while(i <= 10) do print(i) i = i + 1 end for i = 1, 10, 1 do print(i) end for var = start, end, increment do -- code end
function dummy()
return "Hey", 54.54
end
lua/scripting.1668263828.txt.gz · Last modified: 2022/11/12 14:37 by utedass
