Quote:
|
Originally Posted by PBoss
Also, I forgot, in PBasic, is this how you used to do sub routines?
IF condition THEN
gosub FIRST
ENDIF
FIRST:
'code
|
You also need a branch after the IF statement to hop over the "FIRST: code", otherwise the code just falls into the "FIRST: code."