Groovy Functional Programming - Closures
From functions to closures
Consider the following function.
def greet() {
println "Hello"
}
You can invoke the greet function in the following way
greet() // prints "Hello"
Unlike variables/ values, one can neither pass a function as an argument to another function nor return a function from another