2022-07-09 20:10:23 +05:30

11 lines
190 B
Groovy

package greeter
import groovy.transform.CompileStatic
@CompileStatic
class GreetingFormatter{
static String greeting(final String name) {
"Hello, ${name.capitalize()}"
}
}