console
function setup(){
createCanvas(500,500);
background(150);
}
function draw(){
fill(0,0,0,);
ellipse(330,340,60,150);
ellipse(170,340,60,150);
fill(0,0,30);
ellipse(250,195,162,161);
fill(220,220,100);
ellipse(195,440,50,30);
ellipse(305,440,50,30)
fill(0,0,0);
rect(170,180,160,260);
fill(250,255,255);
ellipse(250,350,125,150);
fill(0,190,10);
ellipse(200,230,50,70);
fill(250,250,250,180);
ellipse(300,225,60,90);
fill(200,200,61);
ellipse(220,230,10,10);
ellipse(280,230,10,10);
fill(150,200,80);
triangle(240,240,260,240,250,260);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>