xxxxxxxxxx
13
function setup() {
createCanvas(1000, 1000);
}
function draw() {
background(220);
fill('black');
textSize(20);
text('xPosition: ' + mouseX, 30, 50);
text('yPosition: ' + mouseY, 30, 80);
fill('hsla(160, 100%, 50%, 1)');
rect(200,200,200,200)
}