Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        $p = $hoa->{$_};
        print join ' ', @$p; print "\n";
    }
    
  2. or download this
        print join ' ', @$p[0], @$p[1]; print "\n";
    
  3. or download this
        print join ' ', $p->[0], $p->[1]; print "\n";
    
  4. or download this
    for (sort keys %$hoa) {
        print join ' ', @{$hoa->{$_}}; print "\n";
    }