Help for this page
sub generateSequencer { my( $start, $inc )= @_; $start -= $inc; ... my $countByThrees= generateSequencer( 1, 3 ); print $countByTwos->(), " ", $countByThrees->(), $/ for 1..4;
0 2 4 ... 8 4 10 7 12 10