[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: multiline comment: triple '-' format
- From: Tobias Kieslich <tobias@...>
- Date: Fri, 11 Dec 2009 14:56:29 -0800
Hi,
I have an idea where you are coming from and nice code is always good
but especially the the multiline stuff in Lua is nice because even
though it is a tad noisier it actually allows for nested comments:
--[=[
chunk of code
--[[
Longish comment ...
--]]
code
--]=]
which makes it really easy to take out code segments for testing. That
is a powerful feature I don't wanna miss.
-T