in reply to Re: Applying an array to a function
in thread Applying an array to a function
So the apply function isn't needed either, I can just write (like your example):@t = (1,2,3); test(@t) == test((1,2,3)) == test(1,2,3);
Thankstest(@{[1,2,3]});
|
|---|