0
Complier returns error
public class ExampleProgram{ public static void main(String[]args){ System.out.printIn("Hello World"); } } I have the code typed as indicated in the lesson, but I am receiving the following error when compiling. error: cannot find symbol It is stopping because of the . between out and printIn symbol: method printIn(String) location: variable out of type PrintStream
1 Answer
0
I found the mistake - typo.