SCREEN _NEWIMAGE(640.480,32)
Radius = 25
DO
_LIMIT 60
WHILE _MOUSEINPUT: Radius = Radius + _MOUSEWHEEL:WEND
IF _MOUSEBUTTON(1) THEN
CIRCLE (_MOUSEX, _MOUSEY), Radius, _RGB32(255,255,255)
END IF
LOOP UNTIL _KEYHIT = 27
**************
Done via memory, on my iPad, so may require a little tweaking to correct syntax 100%.
Use left button to draw the circle, wheel to make size larger or smaller.