xxxxxxxxxx
function draw(){
// Draw Face
background(255)
fill(52, 158, 235)
stroke(0)
strokeWeight(2)
circle(200,200,200)
// Eyes
rect(135,130,50,40)
rect(200,130,50,40)
// Mouth
strokeWeight(6)
circle(200,220,75)
// Pupils
fill(245, 66, 84)
ellipse(160,150,25,25)
ellipse(230,149,25,25)}