- or download this
sub fubar {
my %hash = @_;
...
}
...
fubar(%{$arrayofhashes[$index]});
- or download this
sub fubar {
my $hashref = shift;
...
}
...
fubar($arrayofhashes[$index]);
- or download this
sub fubar(%) {
my $hashref = shift;
...
}
...
fubar(%{$arrayofhashes[$index]});