0
Typo?
Not sure if itâs a typo for class B for the Java courseâs classes & objects lesson quiz, but itâs written as: class B { public static void main(String args[ ]) { ... } Shouldnât it be this instead?: class B { public static void main(String[ ] args) { ... }
2 Answers
+ 1
Both ways are identical, semantically.
0
Cool, thanks for letting me know. Much appreciated!