xxxxxxxxxx
34
function setup() {
console.log('Hello World!');
createCanvas(600, 400);
}
function draw(){
background('white');
fill('blue')
rect(50, 50, 500, 300);
fill('violet')
noStroke()
circle(300, 200, 100);
fill('black')
stroke('violet')
strokeWeight(5)
ellipse(300, 200, 140, 40);
noStroke()
text("Ruslan's first Sketch - the Weirdly Colored and Shaped Duck???", 10, 20);
fill('white')
stroke('violet')
strokeWeight(3)
circle(150, 150, 50)
circle(450, 150, 50);
fill('black')
circle(150, 150, 25)
circle(450, 150, 25);
}