Play audio slide show -- Keyboard shortcut: 'x'  Back to slide -- Keyboard shortcut: 'u'  next  next  Play sound for this slide -- Keyboard shortcut: 'y'  Application.java - En klient af Outer.Lecture 4 - slide 32 : 33
Program 2

class Application {

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

}