in reply to Re: Applying an array to a function
in thread Applying an array to a function

Ah yes, I was searching for something like that. I knew I didn't need the eval to achieve my goals. Eval is Evil. Most of the times. If I had took some time, I would have realised, that (pseudocode):
@t = (1,2,3); test(@t) == test((1,2,3)) == test(1,2,3);
So the apply function isn't needed either, I can just write (like your example):
test(@{[1,2,3]});
Thanks