Help for this page

Select Code to Download


  1. or download this
    my $i=0;
    for( $i=0; $i<=$n; $i++ ) {
    ...
           exit;
       }
    }
    
  2. or download this
    for( 0 .. $n )
    {
    ...
       last if @list >= max_length();
       warn('System halt') and exit if bar($n => @list) > 999.999;
    }