Comments
In Lua, any time you see --
, the rest of that line is considered a comment. Comments are there to help you read and understand code, but they are never executed. This example demonstrates how comments are used:
foo = "bar" -- print (foo) -- The above statement never prints -- because it is commented out.