For this type issue, I’d just keep it very simple:
SCREEN _NEWIMAGE(640,480,32)
FOR I = 1 TO 40 STEP 2
PRINT USING “#### ####”; I, I +1
NEXT
CIRCLE (300, 300), 100, _RGB32(255, 255, 0)
2 Simple columns of data. One circle.
It’s not going to get much simpler than that.