// Example 06-07 from "Getting Started with Processing" // by Reas & Fry. O'Reilly / Make 2010 PFont font; void setup() { size(480, 120); font = loadFont("AndaleMono-24.vlw"); textFont(font); } void draw() { background(102); text("That’s one small step for man...", 26, 30, 240, 100); }