Hello guys. I have a question. How is:
a method? I haven't typed anything like:
and I never typed:
So how is this a method call? Also do you think that Java C++ etc should be called Object Oriented Programming Languages(oop) or Class Oriented Programming Languages(cop). Thanks :-)
Code:
System.out.println("Hello, world!");
Code:
void System.out.println() {
blahblahblah
}
Code:
System.out.println();
Comment