Search found 2 matches

by chrisf
Mon Jul 21, 2008 6:27 pm
Forum: Common Lisp
Topic: Creating args from list
Replies: 6
Views: 16616

Re: Creating args from list

Thanks - that worked a treat :-)

You can probably tell I'm new to CL.

Cheers,
Chris
by chrisf
Mon Jul 21, 2008 5:57 pm
Forum: Common Lisp
Topic: Creating args from list
Replies: 6
Views: 16616

Creating args from list

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~%" '...