uni

Thing1's amazing uni repo
Log | Files | Refs | Submodules

App.java (192B)


      1 public class App {
      2 	public static void main(String[] args) {
      3 		Foo f;
      4 		Bar b;
      5 
      6 		f = new Foo("Hello");
      7 		b = new Bar("World");
      8 
      9 		f.setBar(b);
     10 		b.setFoo(f);
     11 
     12 		System.out.println(f);		
     13 	}
     14 }