|
Hi Fogus
I think your problem is that you have not yet compiled your code. I say think because you just mention running java helloworld. If I am wrong please forgive me. But here goes anyway. Try the following
1. save the code as helloworld.java
2. cd to the directory you stored the helloworld.java file
3. run javac helloworld.java
4. then run java helloworld
this should work.
|