/*
 * FlowControlTest.java
 * Dave Sullivan (dgs@cs.bu.edu)
 * 
 * What will this method output?  
 * Trace the flow of control to find out!
 */

public class FlowControlTest {
    public static void methodOne() {
        System.out.println("boo");
        methodThree();
    }

    public static void methodTwo() {
        System.out.println("hoo");
        methodOne();
    }

    public static void methodThree() {
        System.out.println("foo");
    }

    public static void main(String[] args) {
        methodOne();
        methodThree();
        methodTwo();
    }
}
