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!