Help for this page

Select Code to Download


  1. or download this
    my $hash;
    $hash{foo} = bar;
    
  2. or download this
    my %hash;
    $hash{foo} = 'bar';
    ...
    
    my $hash = {};
    $hash->{foo} = 'bar';
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my $hash = {};
    $hash->{foo} = 'bar';
    print Dumper(\$hash);