Page 115 - Learn to Program - Basic-256
P. 115
Chapter 8: Looping and Counting - Do it Again and Again. Page 99
exit do
exit for
exit while
Jump out of the current loop and skip the remaining code in the
loop.
continue do
continue for
continue while
Do not execute the rest of the code in this loop but loop again like
normal.
Fast Graphics:
When we need to execute many graphics quickly, like with animations or
games, BASIC-256 offers us a fast graphics system. To turn on this mode you
execute the fastgraphics statement. Once fastgraphics mode is started
the graphics output will only be updated once you execute the refresh
statement.
© 2019 James M. Reneau (CC BY-NC-SA 3.0 US)

