xxxxxxxxxx
function setup(){
createCanvas(windowWidth, windowHeight);
}
function draw(){
background(255, 0, 0);
strokeWeight(200);
stroke(255, 200, 30);
point(mouseX, mouseY);
line(100, 0, 0, 100);
ellipse();
fill();
}