Code: (Select All)
'Screen _NewImage(800, 600, 32)
$Console:Only
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
this will work for that program too;
Code: (Select All)
Screen _NewImage(800, 600, 32)
''Console:Only
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
b = b + ...