Help for this page

Select Code to Download


  1. or download this
    for my $y ( ... ) {
       for my $x ( ... ) {
          next;
       }
    }
    
  2. or download this
    Y: for my $y ( ... ) {
       X: for my $x ( ... ) {
          next X;
       }
    }
    
  3. or download this
    Y: for my $y ( ... ) {
       X: for my $x ( ... ) {
          next Y;
       }
    }
    
  4. or download this
    for ( @a ) {
       {
    ...
       }
       say;
    }
    
  5. or download this
    for ( @a ) {
       say;
    }