Make it possible to define variadic functions. There are already builtin variadics but there is no way to define them yourself suggested syntax: ```lisp (defun variadic-fun(arg0 arg1 ... var_args) ; body ) ``` This also needs consideration with partial application