Hi,
If I define a closure in Groovy
def c = {println "foo"}
I can invoke it using either
c()
or
c.call()
AFAIK, these two are identical. However, I recently discovered a third way
c.doCall()
Are there any differences between call()
and doCall()
Thanks, Don