xxxxxxxxxx
19
function setup() {
createCanvas(650,500)
}
function draw() {
background (0,255,255)
//Style the line
stroke(250,0,0);
strokeWeight(45);
line(0,0,700,550);
//create an circle
noStroke();
fill(0,200,20);
ellipse(350,250,330,240);
//Draw blue square
fill(20,20,122);
square(470,200,40)
}