in reply to Re: C pre-processor
in thread C pre-processor
Note, however, that Perl will parse the code in the commented out section. If this bothers you, you can do arbitrary pre-processing through Filter::Simple. (Note that the inability to parse arbitrary Perl makes this facility substantially less useful than it could be...)if (0) { FOO: { print "How many times will I print?\n"; } } goto FOO;
|
|---|