make-instance (class symbol) &rest initargs
initargs - an initialization argument list.
instance - a fresh instance of class class.
If the second of the above methods is selected, that method invokes make-instance on the arguments (find-class class) and initargs.
The initialization arguments are checked within make-instance.
The generic function make-instance may be used as described in Section 7.1 Object Creation and Initialization.