Java newbe having trouble with HelloWorldApp
I can get the applets examples working, I'm just having trouble with the HelloWorldApp. I keep getting the same error and I'm typing the code exact. I've trying reinstalling the program and I followed every step to install it. Can you please help me?
This is the code I wrote:
/**
* the HelloWorldApp class implements an application that
* displays "Hello World!" to the standard output.
*/
publicclass HelloWorldApp{
publicstaticvoid main(String[] args){
// Display "Hello World!"
System.out.printIn("Hello World!");
}
}
And this is the error I keep getting:
Directory of E:\java_code
11/16/2004 07:30a<DIR> .
11/16/2004 07:30a<DIR> ..
11/17/2004 06:56a281 HelloWorldApp.java
11/17/2004 06:47a312 HelloWorld.java
11/17/2004 06:49a184 Hello.html
11/17/2004 06:51a372 HelloWorld.class
4 File(s) 1,149 bytes
2 Dir(s)38,060,032 bytes free
E:\java_code>javac HelloWorldApp.java
HelloWorldApp.java:8: cannot resolve symbol
symbol : method printIn (java.lang.String)
location:class java.io.PrintStream
System.out.printIn("Hello World!");
^
1 error
E:\java_code>
Please help so I can finally move on! Thanks!

