Help for this page

Select Code to Download


  1. or download this
    my %argHash = (
        abcd => 'efgh',
    ...
    
        print "$_ => $args->{$_}\n" foreach sort keys %$args;
    }
    
  2. or download this
    my %argHash = (
        abcd => 'efgh',
    ...
    
        print "$_ => $args{$_}\n" foreach sort keys %args;
    }