- or download this
build_url($account, [ $transaction, [ $location, ] ] $fname, $lname);
- or download this
sub build_url {
my $lname = pop;
...
my ($account, $transaction, $location) = @_;
...
}
- or download this
sub build_url {
my $account = shift;
...
my $lname = shift;
...
}
- or download this
sub build_url {
splice(@_, 1, 0, (undef)x(5-@_))
my ($account ,$transaction, $location, $fname, $lname) = @_;
...
}