LightTable-Groovy
LightTable-Groovy copied to clipboard
Collect and display method arguments
def myFunc(a, b, c) { // 2, 3, 4
(a * b)/c
}
def x = myFunc(2,3,4)
´´´