CP2003 - Principles of Programming Languages
Page 1 of 35

The Syntax of Java

prev
Back
next
Index
next
Next

The Inevitable "Hello World" Program

/**
  HelloWorld program
  @author Marc Gysin
  @version 1.0
 */

public class HelloWorld
{
  public static void main(String[] args)
  {
    System.out.println("Hello, World");
  }
}

Marc Gysin, James Cook University.
prev
Back
next
Index
next
Next