Help for this page

Select Code to Download


  1. or download this
    push @arry, ( $var ) x $cnt;
    
  2. or download this
    push @arry, $var for 0 .. $cnt;
    push @arry, map { $var } 0 .. $cnt;