Keyword Arguments
(defun print-array-size (array
(stream *standard-output*)
(let ((size (length array)))
(drawsize size stream) ; then
(print size stream)) ; else
Call the function like this:
- (print-array-size *my-array*)
Or like this:
- (print-array-size *my-array* :stream my-open-file)