Comments
In Lua, the -- characters indicate that the rest of the line is a comment:
-- this is a comment
You can create a multi-line comment, using --[[…]]:
--[[ this comment
is a multi-line comment ]]
If your comment contains square brackets, you can use --[==[…]==]:
--[==[ my
multiline text with [brackets]
]==]
Â