make a comment in a lua file code example
Example 1: Lua how to comment
-- One line comment
--[[ Multiple
line
comment --]]
Example 2: lua comments
-- Inline Comments
--[[ text ]]-- Block Comments
-- One line comment
--[[ Multiple
line
comment --]]
-- Inline Comments
--[[ text ]]-- Block Comments