Help for this page

Select Code to Download


  1. or download this
    my $rws = 0;
    for (...) {
       $foo[$rws] = ...;
       $rws++;
    }
    
  2. or download this
    for (...) {
       push @foo, ...;
    }