/*****************************************************************/ /* Copyright 2013 Code Strategies */ /* This code may be freely used and distributed in any project. */ /* However, please do not remove this credit if you publish this */ /* code in paper or electronic form, such as on a web site. */ /*****************************************************************/ package com.maventest; /** * This class does stuff. * @author Me */ public class Howdy { /** * The main method does stuff. * @param args this is an array of strings that you can pass in */ public static void main(String[] args) { sayHello(); } /** * This method says hi. */ public static void sayHello() { System.out.println("Howdy says hello!"); } }