Help for this page

Select Code to Download


  1. or download this
     @foo{1,2,3} = qw(a b c);
    
  2. or download this
    %foo = (
       1 => 'a'
       2 => 'b'
       3 => 'c')
    
  3. or download this
    @foo{@keys} = @values;
    # instead of
    $foo{$_} = shift(@values) foreach @keys