Posted By


joshnunn on 07/30/09

Tagged


Statistics


Viewed 496 times
Favorited by 0 user(s)

Java "Hello World"


/ Published in: Java
Save to your folder(s)

Learning Java


Copy this code and paste it in your HTML
  1. // File: Hello.java
  2. // Purpose: Print a message on the screen
  3. // Listing: Chapter 1, Listing 1.1
  4. public class Hello {
  5. public static void main(String[] args) {
  6. System.out.println("hello, world");
  7. }
  8. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.