xxxxxxxxxx
23
var sffsd = 100;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255,255,255);
stroke(50);
noFill();
if(mouseX > 300){
fill(255,0,210);
}
ellipse(200, 200, 50, 50);
}