use strict; use warnings; OUTER: while( 1 ) { last OUTER while (1); print "Done with INNER.\n" } print "Done with OUTER.\n"