package cs3500.connectn.consoleui; import cs3500.connectn.model.Model; import java.io.IOException; /** * A console-based Connect Four program. */ public final class Main { // This is the main method, which is called by the JVM when you run this // class as a standalone (console) program. public static void main(String[] args) throws IOException { new Controller(Model.connectFour()).run(); } }