autumnchicken
Dec 18, 2009 14:32
...so begone any pesky spambots that may feel the need to spread their evil.
autumnchicken
Jan 07, 2008 22:39
I'm not entirely too sure why I'm doing this. I know I need to vent and yet this is another blog created. The last one was deleted and purged for a myriad of reasons. It also signalled a new start in life. However, I'm back here now.
autumnchicken
Jan 07, 2008 16:28
/******************************************
* Compilation: javac HelloWorld.java
* Execution: java HelloWorld
*
* Prints "Hello, World".
*
* % java HelloWorld
* Hello, World
*
******************************************/
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}