- or download this
sub routine {
my($thingy, $tx) = @_; # $thingy is not used
...
# we could also say...
# my $pkg = __PACKAGE__;
# ...to get any package we are in in compile time
- or download this
# method calls
...
routine ($obj, "foo");
# etc.
- or download this
my (undef, $thing) = @_;
- or download this
shift @_; # drop first element of argument list
my ($thing) = @_;