Help for this page

Select Code to Download


  1. or download this
    $| = 1;  # output autoflush
    for ( 1 .. $x ) {
        push @array, $_;
        print "I did '$x'!  Yay!\n";
    }