/* * "The Java Developer's Guide to Eclipse" * by D'Anjou, Fairbrother, Kehn, Kellerman, McCarthy * * (C) Copyright International Business Machines Corporation, 2003, 2004. * All Rights Reserved. * * Code or samples provided herein are provided without warranty of any kind. */ /** * Class HelloWorld is the solution to exercise 2, section 1, in * chapter 36. */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); } }