Initial Revision
[ohcount] / test / src_dir / groovy1.groovy
1 //hello.groovy
2 println "hello, world"
3 for (arg in this.args ) {
4   println "Argument:" + arg;
5 }
6 // this is a comment
7 /* a block comment, commenting out an alternative to above:
8 this.args.each{ arg -> println "hello, ${arg}"}
9 */