Ubuntu UK Podcast - Episode 6 is out. Ubuntu UK Podcast - Episode 9
Jun 01


// A simple java application that offers useful advice
// paste into hasNone.java
// to compile: javac hasNone.java
// to execute: java hasNone

public class hasNone
{
public static void main(String arg[])
{
childishness (”Dennis”, true);
}

private static void childishness (String idiot, boolean sillyArgument)
{
growup (idiot);
}

private static void growup (String child)
{
System.out.println(”Grow up ” + child + “!”);
}
}
// that is all.

Leave a Reply