Return to Snippet

Revision: 16258
at July 30, 2009 06:52 by joshnunn


Updated Code
// File:	Hello.java
// Purpose:	Print a message on the screen
// Listing:	Chapter 1, Listing 1.1
public class Hello {
	public static void main(String[] args) {
		System.out.println("hello, world"); 
	}
}

Revision: 16257
at July 30, 2009 06:45 by joshnunn


Initial Code
// File:	Hello.java
// Purpose:	Print a message on the screen
// Listing:	Chapter 1, Listing 1.1   
public class Hello {
	public static void main(String[] args) {
		System.out.println("hello, world"); 
	}
}

Initial URL


Initial Description
Learning Java

Initial Title
Java "Hello World"

Initial Tags


Initial Language
Java