in reply to Re: require in .pm and .pl = blow up?
in thread require in .pm and .pl = blow up?

A decent guess, but not the case.

Perl requires that the last statement in a module be true... a variable assignment returns a true value, so that'll work.

Generally people put 1; as the last line in module just because there's almost no way it can ever evaluate to anything but true, whereas lots of other seemingly straightforward statements actually might. See perlmod for details.

  • Comment on RE: Re: require in .pm and .pl = blow up?