Help for this page

Select Code to Download


  1. or download this
    #!perl -w
    use strict;
    ...
    };
    $hashes[0]->{baz} = 1;
    print Dumper $hashes[1]; # { foo => 'bar' }
    
  2. or download this
    <c>
    #!perl -w
    ...
    };
    $hashes[0]->{baz} = 1;
    print Dumper $hashes[1]; # { foo => 'bar', baz => 1 }