- or download this
BEGIN {
$INC{'MyModule.pm'} = __FILE__;
...
print "yeah!\n" if $thingy->is_thing();
print "boo!\n" unless $thingy->is_thing();
- or download this
__END__
...
$ cat myscript.pl >>newfile.pl
$ perl newfile.pl
yeah!
- or download this
$ cat myscript2.pl
#!/usr/bin/perl -w
...
print "boo!\n" unless $thingy->is_thing();
$