in reply to C style comments?

use POD.

my $I_am_some_code = qq{a value}; =cut Hi, I am a comment. Wow, now I am a multiline comment! =cut sub I_am_more_code { print $I_am_some_code; }

The =cut directive will cut text out of code. Also look at perlpod.

Cheers,
KM

Replies are listed 'Best First'.
RE: Re: C style comments?
by Cirollo (Friar) on Aug 08, 2000 at 18:19 UTC
    Thanks, thats very helpful. I suppose its about time that I read up some more on POD. So much stuff to learn.... :)