Help for this page

Select Code to Download


  1. or download this
    foreach my $i (...list...) {
       ...
    }
    
  2. or download this
    for (...; ...; ...) {
       ...
    }
    
  3. or download this
    for my $i ($x..$y) {
       ...
    }
    
  4. or download this
    foreach my $i (reverse ...list...) {
       ...
    }
    
  5. or download this
    use strict;
    use warnings;
    ...
    
    for (        $min .. $max) { print(":"); <STDIN>; last; }  # 2.2MB
    for (reverse $min .. $max) { print(":"); <STDIN>; last; }  # 239MB