java-tutorials/gradle/greeting-library/bin/greeter/GreetingFormatter.groovy
abirkhan04 9caf73c18e Gradle tutorial project : (#2922)
* Gradle tutorial project :
1. A multi-project build
2. Inclusive all required tasks and dependency example.

* Gradle tutorial is shifted to gradle folder
2017-11-22 20:19:42 +01:00

11 lines
190 B
Groovy

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