/** * @version 1.01 22 Mar 1997 * @author Gary Cornell */ /* This is the first sample program in Core Java Chapter 3 Copyright (C) 1998 Cay Horstmann and Gary Cornell */ public class FirstSample { public static void main(String[] args) { System.out.println("We will not use 'Hello, World!'"); } }