in reply to Re: how to goto &sysread ?
in thread how to goto &sysread ?

using goto is frowned upon

Using goto to control flow is often frowned upon (even when it shouldn't be), but goto &name; doesn't do that.

vthere are times when you want to pretend that you used a subroutine but didn't.

goto &name; does the opposite. It removes a subroutine that did get called from the call stack.