Java needs compiling so types are verified before the code even runs!
Functions must be declared as part of a class in Java.
A function that is part of a class is called a “method”.
So in Java, all functions are methods.
All parameters of a function must have a declared type,
and the return value of the function must have a declared type, if do not return anything, use void.
Functions in Java return only one value!