yburge has asked for the wisdom of the Perl Monks concerning the following question:
#!perl; use warnings; use Fleece; my $BNAME = Mary; print "$BNAME had a little lamb, little lamb, little lamb,\n"; print "$BNAME had a little lamb,\n"; print "It's fleece was $fleece.\n";
package Fleece; use strict; use warnings; use Exporter; $fleece = "white as snow.\n";
Any suggestions? By the way, I'm running Windows 2000, if that makes a difference.Global symbol "$fleece" requires explicit package name at C:/Perl/lib/ +Fleece.pm line 7. Compilation failed in require at testuse.pl line 5. BEGIN failed--compilation aborted at testuse.pl line 5.
|
|---|