lua-users home
lua-l archive

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


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