Files
spring-boot/spring-cli/samples/runner.groovy
2013-07-08 13:42:44 -07:00

11 lines
121 B
Groovy

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