Dear all
I have a question follow this example.
I have a template such as
           (deftemplate Human-Animal
                  (slot human (type OBJECT))
                  (slot animal (type OBJECT))
           )
The value of human slot is Person that is define as below
           (deftemplate person (slot name) (slot age))

and the value of animal slot is Animal that is defined as below
           (deftemplate Animal (slot name)(slot type))

My problem is in applying: Animal can be value in human slot or animal slot
the same as Person that can be value in human or animal slot.
How to specify value in human slot have to be only Person Object?

thank you

Reply via email to