xxxxxxxxxx
20
let wordlist;
function preload() {
wordlist = loadStrings('wordlist.txt');
}
function setup() {
let cvs = createCanvas(700, 500); // Sets default size and ratio.
// cvs.canvas.style.width='100%'; // 100% width of available space
// cvs.canvas.style.height='auto';
background(230);
frameRate(5);
textFont("Courier New", 25);
stroke(230);
}
function draw() {
background(230);
text(random(wordlist), 100, 100);
}