Help for this page

Select Code to Download


  1. or download this
    $ perl -Mstrict -wle"my %hash; @hash{'array'} = 'foo';"
    Scalar value @hash{'array'} better written as $hash{'array'} at -e lin
    +e 1.
    $
    
  2. or download this
    $ perl -Mstrict -wle"my %hash; my @array; @hash{@array} = 'foo';"
    $