public class GreetingService { public static String greet(String name) { return 'Hello, ' + name + '!'; } }