Help for this page

Select Code to Download


  1. or download this
    while( CONDITION_A ) {
      if( CONDITION_B ) {
    ...
        last; # Exits loop immediately.
      }
    }
    
  2. or download this
    my $found = 0;
    while( CONDITION_A && ! $found ) {
    ...
        # BLAH BLAH
      }
    }