Just started reading 'Beginning Programming in Java for Dummies' and when I got to the first example below, I'm getting errors when i try to compile?
I have the JDK 5 update 9 and the Jcreator IDE installed.
Thanks in advance.
class MyFirstJavaClass {
/**
* Method main
**
* @param args
*
*/
public static void main(String[] args) {
System.out.println(“Chocolate, royalties, sleep”);
}
}