Difference between revisions of "Hello World"

From Conservapedia
Jump to navigation Jump to search
m
m (cat)
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:
Line 12: Line 12:
 
    
 
    
 
  }
 
  }
 +
[[Category:Computers]]

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

  }
  
}