groovy 1.0-beta-10 リリース

e:\>groovysh
Lets get Groovy!
================
Version: 1.0-beta-10 JVM: 1.4.2_05-b04
Type 'exit' to terminate the shell
Type 'help' for command help
Type 'go' to execute the statements

groovy> x = 123
groovy> println "x = $x"
groovy> println "x = ${x}"
groovy> go
x = $x
x = 123

e:\>set JAVA_OPTS=-Dgroovy.jsr=true

e:\>groovysh
Lets get Groovy!
================
Version: 1.0-beta-10 JVM: 1.4.2_05-b04
Type 'exit' to terminate the shell
Type 'help' for command help
Type 'go' to execute the statements

groovy> x = 123
groovy> println "x = $x"
groovy> println "x = ${x}"
groovy> go
x = 123
x = 123

そろそろスクリプトはJSRバージョンでかこうかな。