Difference between revisions of "Hello World"

From Conservapedia
Jump to navigation Jump to search
(New page: 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 out...)
(No difference)

Revision as of 18:18, December 1, 2008

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

  }
  
}