A simple way to comment out a block of code without requiring editor support, is to enclose it in a while 0 ... end while block.
Since the while condition is always false, the code will be skipped.
An if 0 then ... end if block is another way to achieve the same effect.