// Example 08-02 from "Getting Started with Processing" // by Reas & Fry. O'Reilly / Make 2010 void setup() { println("Ready to roll!"); int d1 = 1 + int(random(20)); println("Rolling... " + d1); int d2 = 1 + int(random(20)); println("Rolling... " + d2); int d3 = 1 + int(random(6)); println("Rolling... " + d3); println("Finished."); }