I would like to have a CL function with a single argument, but also with a default argument value.
(defun test1 ((x 0))
(+ x x))
would seem to be the syntax, but it doesn't work. The tutorials I'm seeing have the argument-default form like above only in use with &optional and &key. Is it possible to have just one function argument and it with a default?