On Thu, 07 Oct 1999 13:58:18 -0700, Ken wrote:
>#declare A = 12;
>#while (A<12)
Nothing inside the #while - including the "extra" close brace -
will even be parsed, just read and ignored. This is exactly like
the old C practice commenting out code by using #if 0 (which I do.)
[...]
>// } // <------ uncomment this line
>
>#declare A=A+1;
>#end
Post a reply to this message
|