Program: Hello, world!/Example 1
CLS
PRINT "Hello, world!"
END
Program: Hello, world!/Example 2 (uses GOSUB/RETURN sub-routines)
'------------------------
'*** Main program...
'------------------------
GOSUB clearScreen
GOSUB printText
END
'-----------------------
'*** Sub-routines...
'-----------------------
clearScreen:
CLS '...(CL)ear the output (S)creen
RETURN
printText:
PRINT "Hello, world!"
RETURN
Page created: Mon 27 Sep 2021 13:47 PM GMT
Last updated: Mon 27 Sep 2021 13:47 PM GMT