DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Java Hello World
Put this code into HelloWorld.java then run `javac HelloWorld.java' followed by run `java HelloWorld'.
class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello World!");
}
}






Comments
Snippets Manager replied on Sun, 2008/09/21 - 7:46am