/* Examples of method overloading. Notice that each method has a unique signature, that is, the order and types of the parameters are unique. Java doesn't care about the parameter names */ public void happyGreeting(String name) { } public void sadGreeting(String name) { } } /* Again, I am completely lost, and I don't know how to do anything. I tried doing method overloading, but I'm still SUPER shaky on how it works. I would appreciate if we went slower in class and started off doing simpler procedures, becasue I an thouroughly confused.*/