- or download this
sub abc
{
$_[0] = 42;
}
- or download this
my $x = 17;
abc($x);
- or download this
sub abc
{
my ($x, $y, $z) = @_;
}
- or download this
sub abc
{
my @args = @_;
}
- or download this
my $num = shift @array;
- or download this
sub abc
{
...
my $y = shift;
my $z = shift;
}
- or download this
sub abc
{
my ($x, $y, $z) = @_;
}