in reply to Re: Advice on goto usage?
in thread Advice on goto usage?

You can also use next and last (which are synonymous in a bare-block)...

...except for the way they handle continue blocks:

use strict; use warnings; { next; } continue { print "this prints...\n"; } { last; } continue { print "...but this doesn't\n"; } __END__ this prints...

the lowliest monk