mobilebasic/Examples/Graphics/repaint.bas

11 lines
147 B
QBasic
Raw Normal View History

2021-03-29 19:43:07 +03:00
SUB MAIN
DIM I AS INTEGER
GRAPHICS
FOR I=1 TO 20
SETCOLOR RND(256),RND(256),RND(256)
CLS
REPAINT
SLEEP 500
END FOR
END SUB