// This is the hello world program for Java. // See the wikipedia article on Java, for example. public class Hello { public static void main(String args[]){ System.out.println("Hi there.\n"); } }