Help for this page

Select Code to Download


  1. or download this
    [push @ARRAY, LIST] Has the same effect as
       for $value (LIST) {
          $ARRAY[++$#ARRAY] = $value;
       }
    but is more efficient.