Help for this page

Select Code to Download


  1. or download this
    @_ = ( $item[0], $item[1] );
    
  2. or download this
    @_ = ();
    push @_, $item[0], $item[1];
    
  3. or download this
    ( $_[0], $_[1] ) = ...;
    
  4. or download this
    @_[0..$#_] = ...;