sketch

function setup() {
    createCanvas(300, 300);
    background(200, 100, 100);
    text("p5.js vers 0.5.12 test.", 10, 15);
    fill(200);
    noStroke();
    ellipse(150, 150, 100, 70);
    text("This is adorable omg", 50, 50);
}

function draw() {
}

Leave a Reply