- or download this
use strict;
use warnings;
- or download this
my $string = "why doesn't this print?";
print $strnig;
- or download this
my $string = "A";
# rather than
my $string = A;
- or download this
sub A { return 'B' };
...
my $string = A;
print "$string\n"; # this prints "B"
- or download this
#/perl/usr/bin
use warnings;
...
}
}
}