0
why am I getting an error?
class Myclass { public static void main(String[ ] args) { System.out.printIn("Hello World"); } }
2 Respostas
+ 4
Ok i found your error.
in the print statement, you have a small spelling mistake.
it is supposed to be println with a letter L
and you've done it with letter i
essentially, you've got confused between a small case L and a capital i
0
oh wow lol thanks much Appreciated