Guest User

Untitled

a guest
Jul 16th, 2018
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QBasic 0.22 KB | None | 0 0
  1. MAIN:
  2. GOTO INIT
  3.  
  4. INIT:
  5. CLS
  6. IF INKEY$ = "S" THEN STOP
  7. SCREEN 12
  8. A = TIMER
  9. DO
  10. LOOP WHILE TIMER = A + .5
  11. GOTO PRK
  12.  
  13. PRK:
  14. DO
  15. CIRCLE (N, 240), 5, 4
  16. N = N +1: IF N = 640 THEN N = 0
  17. CIRCLE (N - 1, 240), 5, 0
  18. LOOP
Add Comment
Please, Sign In to add comment