(c) Copyright 2000, 2001, 2002, 2004 by Daniel Berleant 


   Review: a First Java Program


import java.lang.*;
class HelloWorld
   {
   public static void main
     (String args[])
     {
     System.out.println
        ("Hello World!");
     }
   }

(Note the I/O statement in it)

New Topic: I/O 


Printing to the Screen: More Details