Unsure of the error message I am receiving
Hello! just following along with the lessons here, I like to practice / do drills of the code I am currently learning and I wrote this here. public class AgeVerif { public static void main(String[] args) { int age = 20; if (age < 16) { System.out.prinln("Too Young to enter"); } else { System.out.println("Welcome!"); } } } As far as I can tell it looks identical to the code that was typed as the example, (which works fine) except of course the int values and the name of the class just for practical learning for myself. And I get this error message.... ..\Playground\:6: error: cannot find symbol System.out.prinln("Too Young to enter"); ^ symbol: method prinln(String) location: variable out of type PrintStream 1 error