Help for this page

Select Code to Download


  1. or download this
    %ha = $obj -> passhash;
    foreach $key (keys (%ha)){
        if ($key eq "problem2"){
    ...
            }
        }
    }
    
  2. or download this
    foreach my $arr_ref (@$ha{'problem2'}) {
      print "subarray: @{$arr_ref} \n";
    }
    
  3. or download this
    my %hash;
    @hash{qw/one two three/} = qw/1 2 3/;