To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
return EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
return Example
10 CLEAR SCREEN
20 GOSUB Here
30 PRINT "Test done."
40 STOP
50 Here: PRINT "Currently in the SUB."
60 RETURN
70 END