Just wondering, I find that the easiest way is to make a program is to have a main loop (usually a do-loop) and have gosub commands within that. Then I write the code in chunks separated into different sub-routines. Usually I dont have any code in the main loop apart from sync and the gosubs. Like this...
do
gosub one
gosub two
gosub three
sync
loop
one:
>
>
>
return
two:
>
>
>
return
three:
>
>
>
return
I find that that way I can re-arrange the code easily to correct an error and it is also easiest to see how my code is working.
Yum! Yum! Yum! Yum!