xxxxxxxxxx
18
let rec = "here";
function setup() {
createCanvas(400, 400);
textAlign(CENTER, CENTER);
}
function draw() {
background(140);
fill(255);
textSize(30);
// text("hello world", mouseX, mouseY);
let centerText = "world center " + rec;
text(centerText, width/2, height/2);
}