Difference between revisions of "Hello World"

From Conservapedia
Jump to: navigation, 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...)
 
m
Line 1: Line 1:
 
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.
 
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:
+
In [[Java]] it is:
  
 
  class HelloWorld {
 
  class HelloWorld {

Revision as of 19:11, 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!");

  }
  
}