Hello World

From Conservapedia
This is the current revision of Hello World as edited by Ed Poor (talk | contribs) at 13:27, February 8, 2010. This URL is a permanent link to this version of this page.
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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!");

  }   
}

In JavaScript it is:

document.write('Hello World!');