// Project: Recursion // Module: maze // Source code file: MyFrame.java // Compute and display the path that // connects the start point to the end point. // Show solution in yellow. public class Main { public static void main(String[] args) { // Instantiate frame. new MyFrame(); } }