Moderator
PipPipPipPipPip
3,827 posts
Gender:Male
Location:STL
Interests:Learning web development.
Posted 24 October 2013 - 10:40 PM
Did you compile successfully? You started with a FirstClass.java file which was actually a text file. Then you ran...
javac FirstClass.java
Did this produce a file named FirstClass.class?
The file FirstClass.java is a text file and should contain something like...
class FirstClass { public static void main(String[] args) { System.out.println("Hello World!"); // Display the string. }}
See...
http://docs.oracle.c...java/win32.html
I would also suggest that you download the Netbeans IDE.