Help for this page

Select Code to Download


  1. or download this
        @array = (@array,$_); # copies the entire array every time
    
  2. or download this
        push @array, $_; # does not copy the entire array every time