Need help with my first program
I have just finished my first year at Uni and one of my modules next year is Java so i thought i would get a head start and learn the basics now.
I have download the latest version of the development java environment. I am starting with Hello World program.
Code:
class Hello
{
public static void main ( String[] args )
{
System.out.println( "Hello World!" ) ;
}
}
The program complies using javac in the command prompt and creates the file Hello.class but then when I try and run the program via .
Then the following message comes up and I don't know why.
http://img191.imageshack.us/img191/1816/errorahu.jpg
Thank you to anyone that can help me!