variable-length of array assignment
with indicating + or * suffixes, array assignment shall allow variable length of values
[a, b, c+] = [1, 2, 3, 4, 5] a = 1, b = 2, c = [3, 4, 5] [a, b, c*] = [1, 2, 3, 4, 5] a = 1, b = 2, c = [3, 4, 5]
with indicating + or * suffixes, array assignment shall allow variable length of values