xxxxxxxxxx
21
let s1 = "glitch";
function setup() {
createCanvas(windowWidth, windowHeight);
textFont("monospace");
textSize(24);
textAlign(LEFT, TOP);
fill(255);
noLoop();
}
function draw() {
background(220, 20, 120);
for (let i = 0; i < s1.length; i++) {
let letter = s1[i].toUpperCase();
let xy = map(i, 0, s1.length, 0, width);
text(letter, xy, xy);
}
}