/*
 *  TestOuter.java       
*/

public class TestOuter
{
   public static void main(String[] args)
    {
        Outer outer = new Outer();
        // Inner inner; TestOuter.java:10: cannot resolve symbol
        System.out.println(outer);
        outer.changeMessages();
        System.out.println(outer);
    }
}

/* Program output:
Half of the problem is 90% mental.
Outer num = 9877
Another deadline. Another miracle.
Outer num = 9878
Life is uncertain. Eat dessert first.
Outer num = 9879
One seventh of your life is spent on Mondays.
Outer num = 9880
*/