Help for this page

Select Code to Download


  1. or download this
    my %hashname = (); # init empty hash
    $hashname{key1} = "value1";
    $hashname{key2} = { x => 'y' }; # nests an anonymous hash as the value
    + for key2
    
  2. or download this
    my $href = \%hash;