Help for this page

Select Code to Download


  1. or download this
    ( my $i = 0 );
    foreach $_ ( 1 .. 456 ) {
        (
    ...
        ( ++$i );
    }
    print("\n");
    
  2. or download this
    $ perl -le"print(1),2"
    1
    
  3. or download this
    ( my $i = 0 );
    foreach $_ ( 1 .. 456 ) {
        print( ( ( $i % 100 ) ? '' : "\n\t" ) );
    ...
    }
    print("\n");