I am having trouble executing a multiple assignment operator for values ββon a map.
def map = [a:1,b:2] (map.a, map.b) = [3,4]
this raises an exception:
expecting ')', found ',' at line: 2, column: 7
However, this works great:
def a = 1 def b = 2 (a, b) = [3,4]
source share