xxxxxxxxxx
25
let lines;
function preload() {
lines = loadStrings("./PRA.txt");
}
function setup() {
createCanvas(windowWidth, windowHeight);
textFont("monospace");
textSize(12);
textAlign(LEFT, TOP);
fill(255);
strokeWeight(2);
noLoop();
}
function draw() {
background(220, 20, 120);
for (let i = 0; i < lines.length; i++) {
text(lines[i], 20, 32 * i + 10, width - 40, height);
line(20, 32 * (i + 1) + 6, width - 20, 32 * (i + 1) + 6);
}
}