From: Doug Currie

Subject: Re: type in common lisp

Date: 1997-3-12 14:56

At 8:31 AM -1000 3/12/97, Nguyen Dao wrote:
>Hi, I'm a new LISP learner. When I try >(defclass people() > ((name:type string))) >it catch an error that no binding type for the Common Lisp symbol TYPE. >What can I do to get rid of this error message?
Put a spece between NAME and :TYPE (defclass people() ((name :type string))) e