package rush;

import java.io.*;

public class RushHour {

	public static void main(String[] args) throws FileNotFoundException, IOException {
		
		// read all the puzzles in default file 
		Puzzle[] puzzles = Puzzle.readPuzzlesFromFile("jams.txt");
		
		// print the first one...
		puzzles[0].print();
	}

}
