package ralph;/**
* My first java file.
* @author wayne
*
*/public class TheCode {
/**
* @param args
*/
public static void main(String[] args) {
System.out.println("monkey " + getNumber());
System.out.println(getNumber());
}
public static int getNumber() {
return 3;
}}
This was my "first" written java class taught to me by my wife, Rebecca. read more »