Help for this page

Select Code to Download


  1. or download this
        use strict;
        use warnings;
    ...
        my $a;
        %$a=(a=>1,b=>2);
        print Dumper($a);
    
  2. or download this
        $VAR1 = {
                  'a' => 1,
                  'b' => 2
                };
    
  3. or download this
        $a={a=>1,b=>2};