/
Comments
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]
]==]
, multiple selections available,
Related content
Commenting
Commenting
More like this
Strings
Strings
More like this
Operators
Operators
More like this
Generating XML
Generating XML
More like this
Annotation Windows
Annotation Windows
More like this
Equality and Inequality Operators
Equality and Inequality Operators
More like this