Hello world.
function setup() {
createCanvas(320, 240);
background(220);
}
function draw() {
rect(10, 10, 40, 50);
}
function setup() {
createCanvas(200, 202);
background(220);
text("p5.js vers 0.9.0 test.", 10, 15);
}
function draw() {
rect(50,50, 30, 20);
fill("blue");
text("Hello world!", 70, 30);
ellipse(100, 100, 50, 30);
}