B
Belbo
Hi,
I've tried to catch C comments (/* ... */) with a cycle like this:
while(($comm =~ /\/\*/) and
($comm !~ /\*\//) and
(defined($next_line=<IN_FICH>)))
{$comm=$comm.$next_line;}
print $comm
I'm sure there's an another way less stupid. But what?
Bye
I've tried to catch C comments (/* ... */) with a cycle like this:
while(($comm =~ /\/\*/) and
($comm !~ /\*\//) and
(defined($next_line=<IN_FICH>)))
{$comm=$comm.$next_line;}
print $comm
I'm sure there's an another way less stupid. But what?
Bye