xxxxxxxxxx
15
let s0 = "This is a string";
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 20, 120);
text(s0, 50, 50);
text(s0, mouseX, mouseY);
for(let y = 50; y < height; y += 50) {
text(s0, 250, y);
}
}