Hello World

From Conservapedia
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.
Jump to navigation Jump to search

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!");

  }
  
}