It must suck to be human. If I was born a human (or as you), I would have killed myself.
- Edelweiss, Sagashi-Ateru 2: Prisoners of Fate

Home » Archives » 20. May 2008

Perl Modules — never forget!

Tuesday, May 20, 2008

When creating Perl Modules never forget that the last line of the file should end with 1; or else you will end up with and error like:

*.pm  did not return a true value at line *.

sample:

package SamplePackage;

use strict;
use warnings;

sub hello_world {
print "Like hello~";
}

hello_world(); #parenthesis aren’t needed

1;

i know i did… wahahaha

Posted by roiji at 9:18 pm | permalink | Add comment