// Greeter Project // Greeter2 Module // Source code file: Main.java // Input a person's name, then use the makeGreeting method // to construct a greeting to that person. Unlike Module 2 // The definition and invocation of the makeGreeting method // are in separate files. public class Greeter { // Method to construct a greeting based on the name. public static String makeGreeting(String name) { return "Hello, " + name + ", how are you?"; } }