void draw()
{
background(255);
fill(0,255,0);
text("What's up?", 10, 25);
fill(255,0,0);
//text("Awful. Please I need someone. Anyone.", 10, 75);
text("I'm fine", 10, 75);
loop();
}
Wanted to try a completely different format. I wrote it like I would write in java with the Processing app. It is pretty much a code poem.