This is the exercise/program from the Tutorial that I am trying to be able to see in its entirety, or to scroll:
SCREEN _NEWIMAGE(800, 600, 32)
PRINT "This program will count to 100 from the number you supply."
PRINT
INPUT "Enter the number to start counting from > ", count%
WHILE count% <= 100
PRINT count%
count% = count% + 1
WEND
SCREEN _NEWIMAGE(800, 600, 32)
PRINT "This program will count to 100 from the number you supply."
INPUT "Enter the number to start counting from > ", count%
WHILE count% <= 100
PRINT count%
count% = count% + 1
WEND