TITLE(args @@ Argument List of a Function )
USAGE(
args(fun)
)
ALIAS(args)
ARGUMENTS(
ARG(fun @@ an interpreted function.
If LANG(fun) is a character string then the function
with that name is found and used.)
)
VALUE(
A function with identical formal argument list but an empty body.
This function is mainly used interactively.
For programming, use LANG(LINK(formals)) instead. 
)
SEEALSO(
LANG(LINK(formals)), LANG(LINK(help)).
)
EXAMPLES(
args(args) #-> NULL (args is a 'primitive' function).
args(plot.default)
)
