import becker.robots.*;

/** A program to plant a field of things.
 *  The size of the field is passed in to a PlantField class.
 *  This works as long as rows*cols in the field is < 100.
 *
 *  @author Byron Weber Becker
 *  @author Duncan Buell
 *
 *  Program written:  16 September 2007
*/
public class Main
{
  public static void main (String[] args)
  {
    City abitaSprings = new City();

//
// Create a planter at location (1,1) facing east.
//
    Planter sondra = new Planter (abitaSprings, 1, 1, Direction.EAST, 100);
	
//
// Now plant a field of size (numRows,numCols).
// Remember that the Planter will plant starting one space over in the current
// direction and then moving to the "right" for successive "rows".
//
    sondra.plantAField(5,3);
  }
} // public class Main


