// Hunter Schafer, CSE 143 // Creates a tree of integer and prints its elements in different orders. public class IntTreeClient { public static void main(String[] args) { // No longer compiles because IntTreeNode is a private inner class // IntTreeNode root = new IntTreeNode(-1); IntTree tree = new IntTree(); tree.print(); } }