advanced code snippet search
joshnunn on 07/30/09
start helloworld
07/30/09 06:52am07/30/09 06:45am
1 person have marked this snippet as a favorite
nerdfiles
Learning Java
// File: Hello.java// Purpose: Print a message on the screen// Listing: Chapter 1, Listing 1.1public class Hello { public static void main(String[] args) { System.out.println("hello, world"); }}
Report this snippet Tweet
Comment:
You need to login to post a comment.