It seems as though there is no way to handle variable arguments in Rebol.
For functions that take one or more arguments, is there an implicit [] wrapping the args?
My brain thinks of Argument count (argc) and Argument vector (argv), for something called on the command line.
Is Rebol, in fact, single Arity?
If it is, does it use Currying at the system level to form the illusion of multiple Arity?
If this was a func, I would think that you would be able to reason about, and manipulate the blocks.
myFunc: func [blks][
...
]
myFunc: [1 2 3] [x y z] [2 4 6]