in reply to Breaking out of an 'if'

why not abuse the while-loop?
while ($some_condition) { &some_stuff(); last if $another_condition; &some_more_stuff; last; }


holli, /regexed monk/