Help for this page

Select Code to Download


  1. or download this
    @saw{ @arr } = ();  # The line I'm not understanding
    
  2. or download this
    {};                             # hash reference
    [];                             # array reference
    ...
    
    @hash{qw(foo bar quux)} = @ary; # LHS in list context, RHS in list con
    +text:
                                    #    $hash{'bar'} == 2; $hash{'quux'} 
    +== 3