lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> How about starting it with "comment = [[" and ending with "]]".  That's
> what I usually do...

You can improve this by writing

  comment = [[
     ...
  --]]

That way you can switch your code in and out by just changing the first
line:

  -- comment = [[
       ...              <<<< active code now
  --]]


-- Roberto