Subroutines - ozarchie/BlueBasic GitHub Wiki

Syntax

GOSUB <line number>

RETURN

Description

I am not sure that nested GOSUB's work e.g.

10 GOSUB 100  
100 GOSUB 200  
101 RETURN  
200 RETURN  

While this simple example may work, more complex sub-routines appear to fail.
NSW

Example

...