You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
272 B
JavaScript

var joinedText;
function preload() {
joinedText = loadStrings('data/library_babel_extract1.txt');
}
function setup() {
createCanvas(1000, 800);
textSize(30);
textFont("monospace");
text(joinedText, 10, 10 ,1000,800);
}
function draw() {
//background(255);
}