public class Tester
{
  public static void main (String [] args)
  {
      Die die1, die2; // declaration of Die objects
		Throw [] myThrows;  // declaration of Throw array
		int value1, value2; // result of roll
		
		// instantiate die objects
		die1 = new Die();
		die2 = new Die();
		
		// roll the dice and print the results
		value1 = die1.roll();
  		System.out.println (" first roll is " + value1);
		
		} // end main
		} // end class