import becker.io.*;
import becker.robots.*;

class ArrayGrapher extends Robot
{
	public ArrayGrapher(City c, int st, int ave, Direction dir, int nThings)
	{
		super(c, st, ave, dir, nThings);
	}
	
	public void drawGraph(?????????????????  ) //TODO: what do you want to put in here?
	{
		// TODO: Draw out the graph
	}
}




public class HistogramWithRobots extends Object
{
    public static void main(String[] args)
    {
	 		City bothell = new City();
			ArrayGrapher mary = new ArrayGrapher(bothell, 1, 1, Direction.EAST, 10000);
			
			int [] integerArray = new int [5];
			integerArray[0] = 1;
			integerArray[1] = 6;
			integerArray[2] = 2;
			integerArray[3] = 0;
			integerArray[4] = 5;
		   mary.drawGraph(integerArray);
	}
}