Codebase list ohcount / e0259188-7180-4bbc-a711-b2cd8983feeb/main test / src_dir / groovy1.groovy
e0259188-7180-4bbc-a711-b2cd8983feeb/main

Tree @e0259188-7180-4bbc-a711-b2cd8983feeb/main (Download .tar.gz)

groovy1.groovy @e0259188-7180-4bbc-a711-b2cd8983feeb/mainraw · history · blame

1
2
3
4
5
6
7
8
9
//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}"}
*/