Code
// Hello World
void setup() {
framerate(21);
smooth();
size(200, 200);
background(100, 20, 60);
PFont cooper = loadFont("CooperBlackStd-67.vlw");
textFont(cooper, 40);
}
int counter = 1;
void draw() {
if (counter == 20) fill(255);
else fill(random(50,200), random(0,30), random(40,100));
text("Hello", 25 + counter, 50 + (counter*2));
text("World", 25 + counter, 125 + (counter*2));
counter = counter + 1;
if (counter == 21) counter = 1;
}
001 -- Hello World: Put your best foot forward.
Statement:Yep, first impressions are important -- there's nothing like a firm handshake and a straight look in the eye. To the best of your abilities, create your own take on the classic "Hello World" program. What if your "Hello World" was sent out into the universe like the gold-plated record on the Voyager spacecraft or the golden plaque on the Pioneer 10 -- the only message that you might ever get to send? No pressure.
An enthusiastic and continually repeated “Hello World".