// Project: Recursion // Module: hanoi2 // Source code file: Main.java // Solve Towers of Hanoi puzzle graphically. public class Main { public static void main(String[] args) { MyFrame x = new MyFrame(); } }