4 lines
72 B
Groovy
4 lines
72 B
Groovy
first = { func -> func() }
|
|
second = { println "second" }
|
|
|
|
first(second)
|