I am taking the course titled Computer Science: Programming with a purpose. The course instructs us to use the stdlib.jar that they have provided for the same. I have followed the instructions to add the .jar file to the list of dependencies in the project structure. I am using the IntelliJ IDE.
When I use the import StdOut
statement, it says Class 'StdOut' is in the default package. When I try using StdOut.printf("Hello World");
, I get the error that says Cannot resolve symbol 'StdOut'.
What should I do?