0
class MyClass { public static void main(String[] args) {System.out.printIn("I am learning Java"); } }
This java code gives me error , what have I done wrong
2 odpowiedzi
+ 2
You typed printIn, where the second to last letter is an i, when it should be a lowercase L
0
It worked thanks