(:ADD-RULE Trucks ((engine ?truck ?engine)
(size ?engine ?engine-size)
(:test (:LISP (> ?engine-size 400)))
->
(wheel ?truck wheel)
(size wheel "P195/65R15")))
(:ADD-RULE Cats ((likes ?cat petting)
<-
(age ?cat ?age)
(:test (:LISP (< ?age 6)))))
Be aware that under non-monotonic reasoning (i.e. facts are deleted from the KB) rule continuations may be present, but no longer applicable, and may derive incorrect results after more facts are added.
The class associated with the rules must already exist.