Help for this page

Select Code to Download


  1. or download this
    %hash = ([1,2] => "STUFF");
    foreach $key (keys (%hash) )
    ...
        print "key |$key| => value |$hash{$key}| :".
              " dereferenced key |@{$key}|\n";
    }
    
  2. or download this
    key |ARRAY(0x80fbb0c)| => value |STUFF| : derefenced key ||