Help for this page

Select Code to Download


  1. or download this
    with %$anonhash, {
       name    => 'dave',
    ...
       phone   => '555-1212',
       hobbies => [ qw( Perl Anime ) ], # make the value into a scalar.
    };
    
  2. or download this
    sub with(\%$) {
       my ($hash, $values) = @_;
       @$hash{keys %$values} = values %$values;
    }