Help for this page

Select Code to Download


  1. or download this
    # This is a hash:
    my %hash = (     1 => 'one',
    ...
    
    # Get a hashref value:
    print "Hash ref: " . $hashref->{1} . "\n";
    
  2. or download this
    print $_, "\t", $hash{$_}->[1], "\t", $hash{$_}->[2], "\n";