Welcome
Posted: Fri Jun 27, 2008 11:28 pm
Well, I just got everything installed and set up. LispForum is now open for business. Please have a good time.
Discuss and learn Lisp programming of all dialects. NOTICE: Site locked. No new users or posts.
http://lispforum.com/
Code: Select all
(defclass people ()
((ideas :accessor ideas :initarg :ideas)
(fun :accessor fun :initarg :fun)))
(defun lispforum (people)
(list (ideas people) (fun people)))
Code: Select all
(defun lispforum (people)
(declare (ignore people))
(list 'ideas 'fun))
Code: Select all
(defun lispforum (people)
(funcall people 'ideas 'fun))
Code: Select all
(defun lispforum (people)
(apply people '(ideas fun)))
I like that!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.