/* multi-line comment 
 * that covers
 * several lines
 */

// single line comment

/**
 * this is a javadoc-style comment
 * for the class HelloWorld444,
 * which simply prints a greeting to
 * standard output
 * 
 * @author Sharon Tuttle
 * @version 2015-01-22
 **/

public class HelloWorld444
{
   /**
    * prints a greeting to the screen
    * 
    * @param args not used 
    **/

   public static void main(String args[])
   {
      System.out.println("Howdy world!");
   }
}