Functions/ Methods in Java
What are java functions/methods?
A function is a block of code which only runs when it is called.
To reuse code: define the once and use it many times
General Syntax:
public class Main {
static void nameOfMethod() {
// code
}
}
public class...
benjaminrukundo.hashnode.dev2 min read