1 // Hello.java, created Mon Feb 5 23:23:21 2001 by joewhaley
2 // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu>
3 // Licensed under the terms of the GNU LGPL; see COPYING for details.
4 package joeq.Main;
5
6 /*
7 * @author John Whaley <jwhaley@alum.mit.edu>
8 * @version $Id: Hello.java 1448 2004-03-09 01:49:01Z jwhaley $
9 */
10 public abstract class Hello {
11
12 /***
13 * @param args the command line arguments
14 */
15 public static void main (String args[]) throws Exception {
16 System.out.println("Hello, world!");
17 }
18
19 }