Help for this page

Select Code to Download


  1. or download this
    for ( @whatever ) {
        if ( 1 .. 4 ) { 
            # enter this block during the first four iterations, then neve
    +r again
        }
    }
    
  2. or download this
    $_ = 0;
    while ($_<6) {
    ...
    4: False
    5: False
    6: False
    
  3. or download this
    $_ = 0
    while ($_<6) {
    ...
    4: True
    5: True
    6: True