Package checkboard

Source Code of checkboard.Checkboard

package checkboard;

import checkboard.model.MutilatedModel;

import common.model.Model;
import common.model.StatementPrinter;

public class Checkboard {

  public static void main(String[] args) {

    Model model = new MutilatedModel(4, 4);
    StatementPrinter.print(model.generate(), System.out);
  }
}
TOP

Related Classes of checkboard.Checkboard

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.