WhoAmI.java
01 package edu.smccd.cis381.fall2006.project1;
02 
03 /**
04  * Prints a hellow world message to the console
05  
06  @author Kevin Nilson
07  *
08  */public class WhoAmI {
09 
10   /**
11    @param args ignored
12    */
13   public static void main(String[] args) {
14     System.out.println("My name is Kevin Nilson");
15     System.out.println("");
16     System.out.println(";)");
17 
18   }
19 
20 }