xxxxxxxxxx
void setup() {
size (500, 300);
frameRate (2.5); // speed of displaying sentences
}
void draw () {
background (0);
// settig up a list of sentences
String [] Inspirational = new String [5];
// assignig a sentence to each part of the list of sentences
Inspirational[0] = "Cleanliness is next to godliness";
Inspirational[1] = "Gender is performance anyway";
Inspirational[2] = "Dogs are an Inspiration";
Inspirational[3] = "We Gonna Be Alright";
Inspirational[4] = "2017 is OVER";
// select a radom sentence to display
textSize (30);
text (Inspirational [int(random(Inspirational.length))], 30, height/2);
}