Last with label : Last « Statement « Perl






Last with label

  

#!/usr/bin/perl -w

use strict;

my $i = 1;

OUTER: while ($i <= 5) {
    my $j = 1;
    while ($j <= 5) {
        last OUTER if $j == 3;
        print "$i ** $j = ", $i ** $j, "\n";
        $j++;
    }
    $i++;
}

   
    
  








Related examples in the same category

1.Breaking Out
2.Exit a loop
3.Exits using the last statement.
4.Labels: Create an infinite loop to demonstrate how last will break out of multiple code blocks.
5.The last statement breaks out of a loop from within the loop block.
6.Use a label
7.Using a label.
8.Using the last statement in a foreach structure.
9.last if
10.last statement
11.last statement inside an if statement