Comments
Lua, as most languages, offers you single and multiline comments to annotate your code. Make use of it to improve readability and make it easier to fix bugs!
-- single line comment
--[[
This group of lines
is commented out
]]
----------------------
-- of course you can also
-- comment multilines
-- this way, looks nice
----------------------