Last modified on December 1, 2008, at 19:11

Hello World

This is an old revision of this page, as edited by DrSandstone (Talk | contribs) at 19:11, December 1, 2008. It may differ significantly from current revision.

A Hello World application gives a computer programmer confidence that his development system is working properly. It is typically a very small program which produces recognizable output.

In Java it is:

class HelloWorld {

  public static void main (String args[]) {

    System.out.println("Hello World!");

  }
  
}