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.

[1266 byte] By [rocket] at [2007-9-30 22:26:33]
# 1

you did printIn its suppose to be println

/**

* 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.println("Hello World!");

}

}

println with an l(L) not an i(I)

thatonejewishguy at 2007-7-7 12:49:48 > top of Java-index,Archived Forums,Debugging Tools and Techniques...
# 2
in "println" line you entered :(colon) instead of semicolon, correct that
Nagesh007 at 2007-7-7 12:49:48 > top of Java-index,Archived Forums,Debugging Tools and Techniques...