http://www.perlmonks.org?node_id=992112


in reply to Re^2: while loop question
in thread while loop question

Of course it does :). It works in just the same way as using next/last in any nested loops.

OUTER: { INNER: while(1) { next INNER if this(); last OUTER if that(); } }