

/**
 * Creates and rolls two dice, displaying the result.
 *   @author Dave Reed
 *   @version 8/25/08
 */
public class DiceRoller {
   public static void main(String[] args) {
      Die d6 = new Die();

      int roll = d6.roll() + d6.roll();

      System.out.println("You rolled a " + roll);
   }
}
