Help for this page

Select Code to Download


  1. or download this
    sub add2array {
       my $ref2array = shift;
    ...
          push ( @{$ref2array} $thing );
       }
    }
    
  2. or download this
    $ref2array = map { push @{$_} } sort keys $obj->things;