Not sure which loop you want to break out of? Perl v5.18 makes that easy with computed labels. The value you give next
, last
, and redo
no longer has to be a literal. You could already do this with goto
, but now you can give the loop controllers an expression. Continue reading “Use a computed label with loop controllers”