Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Y = 11
for x = 0 to 10
do something
Y = Y + 1
Next
' Y(22) and Y(23) are unprocessed
for x = 0 to 10
for Y = 11 to 23 ' Process all Y for each X
do something
Next
Next