I just wrote a simple hellow world program and my computer won't compile it. My code is probably wrong, so I will also include it with the error message. If you know why this is happening, please tell me.
Java>javac helloApp.java
helloApp.java:5: error: cannot find symbol
System.out.printIn("Hello, World!!!");
^
symbol: method printIn(String)
location: variable out of type PrintStream
1 error
Code:
public class helloApp
{
public static void main(String[] args)
{
System.out.printIn("Hello, World!!!");
}
}