Help for this page

Select Code to Download


  1. or download this
    my $href = {
      'x' => {
    ...
      },
      'charm' => { .... },
    };
    
  2. or download this
    foreach  my $obj  (%{$href})
    # This dereference ^ causes a deep copy to be made
    
  3. or download this
    01: my $list = [1, 2, 3];
    02: doStuff($list);
    ...
    09:     print "$listElement \n";
    10:   }
    11: }