- or download this
$_ = "ace";
my($a, $b, $c) = (/a/, /b/, /c/);
- or download this
my %foo = (BAR => $cgi->param('bar'),
BAZ => $cgi->param('baz'),
ZOT => $cgi->param('zot'),
);
- or download this
use subs qw|lc|;
sub lc { lc shift }
print lc("BAR");
- or download this
use subs qw|lc|;
sub lc { CORE::lc shift }
print lc("BAR");