On Mon, Dec 10, 2018 at 10:35 AM Jerry Stratton <model...@hoboes.com> wrote:

> It was very common back in the day to start all subroutines at line 1000,
> or some other large round number, and then just before that large number
> have an END statement.
>
>
I agree Jerry, that's a good practice.

Still need to be careful of GOTO'ing into a subroutine, or having a
multiple-entry subroutine.

I mean, you can have a multiple-entry subroutine, you just need to make
sure you enter it with a GOSUB, and realize recursion back into a
subroutine is unlikely to do what you want.

-- John.

Reply via email to