
/* Checker-playing application
*/
public class TrivialApplication{
public static void main(String args[]) {
	System.out.println( "The game of Checkers!" );
	Checkers game= new Checkers();
		
	try {System.in.read(); 
	    }
        catch (java.io.IOException e) {}
	}
}

