We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This dynamic variable holds a list of all arguments sent to a procedure after the formals.
(proc foo (x y z) (list x y z rest)) (foo 1 2 3) ; (1 2 3 ()) (foo 1 2 3 4 5 6 7) ; (1 2 3 (4 5 6 7))