Source of TestHelloWorld.java


  1: //TestHelloWorld.java
  2: 
  3: public class TestHelloWorld
  4: {
  5:     public static void main(String[] args)
  6:     {
  7:         System.out.println("Hello there, world!");
  8:         System.out.println("And now, sadly ... Good-bye!");
  9:     }
 10: }