mobilebasic/Examples/Core/sleep.bas

8 lines
108 B
QBasic

SUB MAIN
DIM I AS INTEGER
FOR I=1 TO 10
PRINT I
SLEEP 1000
END FOR
PRINT "Finished"
END SUB