/* An example of the use of recursion. The 'findExit' algorithm comes from "An Introduction to Computer Science Using Java" by John Carter. */ public class Driver { public static void main (String args []) { Maze aMaze = new Maze (); aMaze.start (); } }