lua-users home
lua-l archive

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


>About disabling code blocks

Juts a reminder: there's the string trick:

local C=[[
 BLOCK TO BE COMMENTED OUT
--]]

The block can be turned on again simply by adding -- to the first line.
This does not generate bytecode for the block but adds a string...
--lhf