Monday, November 21, 2005

Sun Studio 11 now free!


This is great news for developers on the Sun UltraSPARC and/or x86/x64 platforms! You can now download Sun Studio 11 (including the Forte compiler) for FREE! Get over there quick, before they change their minds, and save yourself a few thousand dollars...

Download Sun Studio 11
While you're at it, download Solaris 10 (UltraSPARC/x86/x64) and discover what this incredible new operating system has to offer.

NOTE: I'm not employed by or associated with Sun, other than just being a very happy customer....

Tuesday, August 23, 2005

Hello World!

Let's start where all programmers start when trying to pick up a new language. Hello World! Java makes this easy:


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


Very easy!