Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 308 Bytes

File metadata and controls

33 lines (28 loc) · 308 Bytes

Lua

Function Declaration

function challenge(x, y, z)
  ...
  return x + y + z
end

Logging

TODO

Variables

a = 1         -- 1
a = {1, 2, 3} -- [1, 2, 3]

Loops

-- While
while x != y do
  ...
end

-- Range (3 4 5 6 7 8)
for i = 3, 8 do
  ...
end