public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Model model = new Model();
View view = new View(model);
new Controller(model, view);
} catch (Exception e) {
e.printStackTrace();
System.exit(0);