Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    for (my $i = 0; $i < 10; $i++) {
            print "$i\n";
    }
    
  2. or download this
    my $i = 0;
    while ($i < 10) {
    ...
    continue {
        ++$i
    }