Laws
onsdag, 23. desember 2009Nothing travels faster than the speed of light with the possible exception of bad news, which obeys its own special laws.
Nothing travels faster than the speed of light with the possible exception of bad news, which obeys its own special laws.
public class HelloWorld {
public HelloWorld() {
super();
}
protected void helloWorld() {
System.out.println("Hello World");
}
public static void main(String[] args) {
HelloWorld hello = new HelloWorld();
hello.helloWorld();
}
}