xxxxxxxxxx
11
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
answer = "Lots of words Lots of words Lots of words Lots of words Lots of words Lots of words.";
text(answer, 30, 30, 200);
//The 200 at the end of the line above tells p5 to create an
//invisible text box with a width of 200 pixels.
}