// Copyright (C) 1989-2019 PC2 Development Team: John Clevenger, Douglas Lane, Samir Ashoo, and Troy Boudreau. // // File: hello.java // Purpose: prints hello world // Author: pc2@ecs.csus.edu or http://www.ecs.csus.edu/pc2 // Oct 13 1998 // // $Id$ // public class hello { public static void main(String[] args) { System.out.println("Hello World."); } } // eof