Groovy - Hello World
Hello World !
With the groovy executable in the bin directory
- Shell
groovy helloWorld.groovy "Nico"
- Script
println "Hello "+args[0]
- Output:
Hello Nico
With the groovy executable in the bin directory
groovy helloWorld.groovy "Nico"
println "Hello "+args[0]
Hello Nico