xxxxxxxxxx
15
let rectX = 100;
let rectY = 100;
let rectWidth = 200;
let rectHeight = 200;
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 10, 120);
fill(255);
rect(rectX, rectY, rectWidth, rectHeight);
}