Why does a page containing just the following produce no output?:
{{groovy}}
class Callee {
void hello() {
println "hello, world"
}
}
c = new Callee()
c.hello()
{{/groovy}}
I have programming rights, and running scripts in general works fine. It's just when I
try to invoke a method from a locally defined class that I hit problems.