// import becker.robots.*;

/** A program to test arithmetic
 *
 *  @author Duncan Buell
 *
 *  This is just a simple main program to demonstrate 
 *  the arithmetic in Java on a randomly-chosen computer.
 *  I honestly don't know how much of the rules of
 *  arithmetic is supposed to be part of the Java
 *  standard and how much is up to the whim of the 
 *  compiler writer for a specific computer
 *  architecture.
 *
 *  Program written:  14 October 2007
*/
public class Main
{
  public static void main (String[] args)
  {
    TestCode theTest = new TestCode();

    theTest.doIntegerTest();
    theTest.doDoubleTest1();
    theTest.doDoubleTest2();
    theTest.doDoubleTest3();

  }
} // public class Main


