For example, I have a function:
myFunction = function(a1,a2,a3)
end;
And I want to save all the arguments given myFunction inside it by a code which will be correct after changing number of myFunction arguments and their names. It seems to me that it can be done by a for cycle, but I don't know how to call arguments and #arguments in it.