10 lines
193 B
Text
10 lines
193 B
Text
spinning$ = "|/-" + chr(92)
|
|
c = 1
|
|
|
|
while key = ""
|
|
cls
|
|
print chr(10) + " hit any key to end program "; mid(spinning$,c,1)
|
|
c += 1
|
|
pause .250 # in milliseconds
|
|
if c = 4 then c = 1
|
|
end while
|