spring-boot/spring-boot-cli/samples/runner.groovy
Phillip Webb bec1c8f00f Polish
2013-11-04 22:17:38 -08:00

9 lines
119 B
Groovy

package org.test
class Runner implements CommandLineRunner {
void run(String... args) {
print "Hello World!"
}
}