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.
dim I as integer = 0
Do While I < 0
I+=1
Loop
msgbox I
dim I as integer = 0
Do
I+=1
Loop Until I < 0
msgbox I
file.open
do
file.readline
'do something
loop until file.EoF
file.open
file.readline
do while not file.EoF
'do something
file.readline
loop