xxxxxxxxxx
14
// happens once at the start
function setup() {
frameRate(10);
createCanvas(400, 400);
background(220);
}
// happens over and over
function draw() {
//background(220);
fill(random(255));
textSize(50);
text("hello world", random(80,60), random(80, 360));
}