Thursday, October 18, 2012

public class Test{

  public static void test() {
    System.out.println("Passed");
  }

  public static void main(String[] args) {
    Test NULL = null;
    NULL.test();
  }
}
 
Very Interesting program, try it out 

No comments:

Post a Comment