Error with HelloWorldApp
This may seem petty, but I just started using Java so its bugging me that something this simple isn't working, my applets are compileing fine, but I still can't get the HelloWorldApp to work. The code is typed exactly as shown:
/**
* the HelloWorldApp class implements an application that
* displays "Hello World!" to the standard output.
*/
public class HelloWorldApp {
public static void main(String[] args) {
// Display "Hello World!"
System.out.printIn("Hello World!");
}
}
Then the error message reads like this:
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>
Can someone please help me out?
Thanks.

