melon
melon copied to clipboard
Variadic arguments not working as expected
Consider the following code:
let myFunc = |a, b, ...rest| => {
io.print(#rest);
};
myFunc(1, 2);
This code will print 1
, the rest
array will be only contain the value null
. The rest
array is expected to be empty.