spring-boot/spring-boot-cli/samples/runner.groovy

11 lines
121 B
Groovy

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