Answers for "lua comments"

Lua
2

lua comments

-- Inline Comments
--[[ text ]]-- Block Comments
Posted by: Guest on March-19-2020
1

lua comments

-- print("An inline comment starts with --")

--[=====[
  Multiline comments are enclosed in --[[double square brackets]]
  and can be nested by placing = signs between the brackets
]=====]

---[[
print("Quickly toggle code block comments with a third - at the start")
--]]
Posted by: Guest on August-08-2020

Browse Popular Code Answers by Language