/*
 * File: CheckerBoard.java
 * -----------------
 * Draws a checkerboard with alternating black and white tiles.
 */

import acm.graphics.*;
import acm.program.*;
import java.awt.*;

public class Checkerboard extends GraphicsProgram {	

	/* The size of a single square on the board */
	private static final int SQUARE_SIZE = 50;

	/* Number of rows */
	private static final int NROWS = 8;

	/* Number of cols */
	private static final int NCOLS = 8;

	public void run() {
		
	}
}
