test3.py

Created by cent20

Created on June 29, 2023

165 Bytes


from kandinsky import set_pixel

for x in range(320):
  for y in range(222):
    c = (y+x)%(y+1) and (y-x)%(x+1)
    if c:
      set_pixel(x,y, (c,c,c))