xxxxxxxxxx
var word = 'The quick brown fox jumped over the lazy dog.'
var x = 0
var y = 10
fill(255)
text(word, x, y)
// The string in the `word` variable will be written in the top left
// To change text size use `textSize(TEXT_SIZE)`
xxxxxxxxxx
textSize(32);
text('word', 10, 30);
fill(0, 102, 153);
text('word', 10, 60);
fill(0, 102, 153, 51);
text('word', 10, 90);