xxxxxxxxxx
23
let s0 = "the glitch creates a fissure within which new possibilities of being and becoming manifest";
let words;
function setup() {
createCanvas(400, 400);
textFont("monospace");
textSize(40);
textAlign(CENTER, CENTER);
fill(255);
words = s0.split(" ");
}
function draw() {
background(220, 20, 120);
let wordIndex = second() % words.length;
let myWord = words[wordIndex];
text(myWord, width / 2, height / 2);
}