Sunday, October 19, 2008

Hello World: Java

I'm on Ubuntu 8.04 Hardy, running Eclipse and Sun java and javac.

Open up your favorite word processor, and type in:


public class HelloWorld {
public static void main(String[] args){
System.out.println("Hello World!");
}
}


Make sure that all braces and semicolons are lined up, otherwise your code won't compile correctly.

The

Monday, September 29, 2008

New Blog!

So I've decided to start a new blog concerning general programming and any computer tips and tricks that I find while spending time on the screen. So soon there should be either a Java or C++ beginner's guide.

Thanks.
---mac