blob: e022b2cc432ef77585ff4c943f97c1b8ecd969ad [file] [log] [blame]
//hello.groovy
println "hello, world"
for (arg in this.args ) {
println "Argument:" + arg;
}
// this is a comment
/* a block comment, commenting out an alternative to above:
this.args.each{ arg -> println "hello, ${arg}"}
*/