
(defclass people ()
((ideas :accessor ideas :initarg :ideas)
(fun :accessor fun :initarg :fun)))
(defun lispforum (people)
(list (ideas people) (fun people)))
(defun lispforum (people)
(declare (ignore people))
(list 'ideas 'fun))
(defun lispforum (people)
(funcall people 'ideas 'fun))
(defun lispforum (people)
(apply people '(ideas fun)))
findinglisp wrote:Maybe:
- Code: Select all
(defun lispforum (people)
(apply people '(ideas fun)))
I don't know about that. I thought using people was bad.findinglisp wrote:But yes, having a warning saying that people weren't used probably isn't what I was going for.
Users browsing this forum: No registered users and 4 guests