how to comment multiple lines in lua code example
Example 1: lua multiline comment
--[[
This
is
a
comment
on
many
different
lines!
]]--
Example 2: how to comment multiple lines in lua
Comment one line -
-- stuff here
Comment multiple lines
--[[ stuff
here --]]
Example 3: lua commenting
-- Your comment here