Help for this page

Select Code to Download


  1. or download this
    %a = qw(cat dog);
    print $a{cat};
    ...
    print $a{cat};
    
    sub foo { $_[1] = "elephant" }
    
  2. or download this
    %a = qw(cat dog);
    print $a{cat};
    ...
        $temphash{cat} = "elephant";
        %temphash;
    }