/*
 * @(#)TestComments.java
 *
 * Summary: Demonstrates use of non-Javadoc comments.
 *
 * Copyright: (c) 2009 Roedy Green, Canadian Mind Products, http://mindprod.com
 *
 * Licence: This software may be copied and used freely for any purpose but military.
 *          http://mindprod.com/contact/nonmil.html
 *
 * Requires: JDK 1.6+
 *
 * Created with: IntelliJ IDEA IDE.
 *
 * Version History:
 *  1.0 2009-04-12 - initial version
 *  1.1 2009-04-13 - fine tune
 *                   (This entire comment will not show up in Javadoc.)
 */
package com.mindprod.example;

import static java.lang.System.out;

/**
 * Demonstrates use of non-Javadoc comments.
 * <p/>
 * The TestComments class does not actually do anything.
 * Its whole point is to show how you might do comments at the head of a file.
 *
 * @author Roedy Green, Canadian Mind Products
 * @version 1.1 2009-04-12 - fine tune
 * @since 2009-04-12
 */
public class TestComments
    {
    // --------------------------- main() method ---------------------------

    /**
     * print out "hello world"
     *
     * @param args not used
     */
    public static void main( String[] args )
        {
        out.println( "hello world" );
        }
    }