// A simple program to greet various people by name. // // Notice the use of a String parameter. public class SayHello { public static void main(String[] args) { sayHelloTo("Brett"); System.out.println(); sayHelloTo("Caitlin"); System.out.println(); sayHelloTo("Amelia"); } // Greets the given person by name. // // String name - the person to greet public static void sayHelloTo(String name) { System.out.println("Why hello, there, " + name + "!"); System.out.println("Thanks for stopping by."); } }