Play audio slide show -- Keyboard shortcut: 'x'  Back to notes -- Keyboard shortcut: 'u'              Play sound for this slide -- Keyboard shortcut: 'y'  Lecture 4 - slide 32 : 33
Program 4
 

class Application {

  public static void main(String[] args){
    Outer o = new Outer();
    Object i = o.makeInner();
    o = null;
    System.out.println(i);  // bruger toString()
  }

}