xxxxxxxxxx
31
let str='I dunk a skunk in a trunk full of gunk.';
console.log(str.charAt(0));
function setup() {
createCanvas(460, 400);
textSize(36)
textAlign(LEFT,TOP);
}
function draw() {
background(220);
let x=0;
let y=0
for(let c=0;c<str.length;c++){
if(frameCount%10==1){
let ch=str.charAt(c);
text(ch,x,random());
x+=textWidth(ch)
if(x>width){
x=0;
y+=textAscent()+textDescent();
}
c++;
c%=str.length;
}
}
}