public class MyClass {
void myMethod() {
System.out.println("You have called me! My name is: myMethod!");
}
public static void main(String[] args) {
new MyClass().myMethod();
}
}
public class MyClass {
static void myMethod() {
System.out.println("You have called me! My name is: myMethod!");
}
public static void main(String[] args) {
myMethod();
}
}
public class methods{
public static void main(String[] args){
printSum(5, 15); // Print 20
}
public static void printSum(int a, int b){
System.out.println(a + b);
}
// Our method should be outside the main methods bounds
// Call your function inside the main method.
}
// calls the method
addNumbers();