Help for this page

Select Code to Download


  1. or download this
    foreach my $i ($ref->%b} {
        print $i;           # I want to see the content of the hash.
    }
    
  2. or download this
    foreach my $i (  %{  $ref->{b}  }  ) {
        print $i;           # I want to see the content of the hash.
    }