xxxxxxxxxx
18
let rawText;
function preload() {
rawText = loadStrings("dracula.txt");
}
function setup() {
createCanvas(600, 400);
textSize(5);
console.log(rawText);
}
function draw() {
background(220);
for (let i=0; i<rawText.length; i++) {
text(rawText[i], 20, 5 + (5*i))
}
}