in reply to Re: Block comments with POD commands
in thread Block comments with POD commands

Thank you sgifford. Is there a better way to disable a block of code?

-ted-

  • Comment on Re: Re: Block comments with POD commands

Replies are listed 'Best First'.
Re: Re: Re: Block comments with POD commands
by sgifford (Prior) on Jul 16, 2003 at 21:05 UTC
    If the code compiles, I often just wrap it in if (0) { ... }. If it doesn't and you're commenting it out temporarily, using the POD style is your best bet; just keep in mind that it will feel a little awkward. If it's commented out longer-term, I would put # at the beginning of all the lines, as it's less likely to confuse people (including you!) looking at the code later. Hopefully your editor makes #-ing out a bunch of lines pretty painless; if not I might consider using POD format anyways.

    That's just my personal style; I'm sure there are other ways of doing things with their own advantages and disadvantages.

Re: Re: Re: Block comments with POD commands
by cmilfo (Hermit) on Jul 16, 2003 at 20:37 UTC

    If it's to be a permanent comment, I stick with using #.
    If I'm just commenting out code temporarily, I use =cut.

    =cut my $code = "I wish to comment"; =cut