-- Chapter 07 example: comments. -- A single-line comment starts with two dashes. print("This line runs.") -- This bit of the line is a comment. --[[ This is a multi-line comment. It opens with two dashes and two square brackets, and closes with two square brackets. Lua ignores everything between the two markers. Useful for long notes or for temporarily disabling code. ]] print("This line also runs.")