Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    # Set up some stuff for this example
    ...
    
    # Show that it worked
    print Dumper(\%hash);
    
  2. or download this
    my $hash;
    
    my $work = \$hash;
    $work = \$$work->{$_} for @levels;
    $$work = $value;
    
  3. or download this
    $hash{join(",", @levels)} = $value;