To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
GOSUB EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
GOSUB Example
10 Y=3
20 Z=4
30 GOSUB Calc_x
40 PRINT "X = ";X
50 STOP
60 Calc_x: X=Y*45/Z
70 RETURN
80 END