SCREEN 13 'sets the screen
DO 'starts a loop
FOR x = 1 TO 255 'sets x
y = 255 - x 'sets y
CIRCLE (160, 120), x, x 'draws one circle
CIRCLE (160, 120), y, x 'draws another circle
NEXT 'adds one to x and returns
LOOP UNTIL INKEY$ = CHR$(13) 'keeps going until enter is hit
Back to my home page!