Help for this page

Select Code to Download


  1. or download this
    print "hello" for 1 .. $messages;
    
  2. or download this
    for ( 1 .. $messages ) {
        ...
    }
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    for ( my $i = 1; $i < $limit; $i++ ) {
        ...
    }