5 lines
72 B
Text
5 lines
72 B
Text
|
|
def array := [1,2,3,4,5]
|
||
|
|
def square(value) {
|
||
|
|
return value * value
|
||
|
|
}
|