DO....LOOP: --------------- Keeps repeating your program until something happens. Example: CLS DO PRINT "Press space to stop loop." LOOP UNTIL INKEY$ = " " END