User Tools

Site Tools


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

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki