Create pixel art with code
fill(x, y, color)Fill single pixel
rect(x, y, w, h, color)Draw rectangle
line(x1, y1, x2, y2, c)Draw line
circle(cx, cy, r, c)Draw circle
clear(color)Clear canvas
random(min, max)Random number
Tip: Use for loops to create patterns! Canvas is 16x16 pixels (x: 0-15, y: 0-15).