I'm trying to work out a way of providing mutliple arguments to a function, where the arguments are held in a variable as a list. I've got a stripped down example of what I'm trying to do: (defun print-record (format-str &rest args) (format t format-str args)) (print-record "~A ~A~%" '...