Help for this page

Select Code to Download


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