xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
noStroke();
for(var i=0; i<250; i++){
// instructions exécutées le nombre de fois demandé, ici 250
ellipse(random(width), random(height), random(width), random(height));
fill(random(255), random(255), random(255));
}
}
function draw() {
}