xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
background(255);
}
function draw() {
fill(random(0,255),random(0,255),random(0,255));
textSize(random(0,20))
text(random(0,4),random(0,400),random(0,400));
if(mouseIsPressed){
background(255);
}
textAlign(CENTER);
textSize(50);
fill(0);
text('Rekas',200,200)
}