p5((s) => {
s.setup = function () {
s.createCanvas(width, height);
};
s.draw = function () {
s.background(250);
s.beginShape();
s.vertex(width / 2, height / 2 - 50);
s.vertex(width / 2 + 50, height / 2 - 20);
s.vertex(width / 2 + 30, height / 2 + 40);
s.vertex(width / 2 - 30, height / 2 + 40);
s.vertex(width / 2 - 50, height / 2 - 20);
s.endShape(s.CLOSE);
};
})