Code

void setup(){
  size(300,500);
  noStroke();
  framerate(30);
  PFont myFont; 
  myFont = loadFont("Eureka90.vlw"); 
  textFont(myFont, 50); 
  fill(255,255,255); 
}
void draw(){
background (102,102,153);
text("h", mouseX, mouseY-260);
text("e", mouseX+3, mouseY-238);
text("l", mouseX+5, mouseY-203);
text("l", mouseX+5, mouseY-168);
text("o", mouseX+3, mouseY-145);
text("w", mouseX-3, mouseY-113);
text("o", mouseX+3, mouseY-92);
text("r", mouseX+5, mouseY-70);
text("l", mouseX+5, mouseY-35);
text("d", mouseX, mouseY-0);
}

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.

hide statement