When I run this Java code I get the error "System.out.printLn("Java is more complicated than python"); ^ symbol: method printLn(String) location: variable out of type PrintStream" My Code is:
class complicated{
public static void main(String args[]){
System.out.printLn("Java is more complicated than python");
}
}
P.S I know this question has been asked before but I don't have System.out.printIn instead of System.out.printLn.