Help for this page

Select Code to Download


  1. or download this
    sub traverse(&$) {
        my( $code, $ref ) = @_;
    ...
    }
    
    traverse { print join ',', @_ } \%hash;
    
  2. or download this
    my @strings = traverse{ join',', @_ } \%HorAofHorA;