18 Dec
2014
18 Dec
'14
10:09 p.m.
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.