in reply to exit calling subroutine

You can do this to get the effect that you want:
begin(); goto &do_stuff; end(); sub do_stuff { stuff(); if (something went wrong) { return } more_stuff(); }

Replies are listed 'Best First'.
Re^2: exit calling subroutine
by ikegami (Patriarch) on Jan 10, 2008 at 17:40 UTC
    I don't think "never call end" is the desired effect.