Ch5 Nightly 2

We are modifying our pattern matcher to return an association list.

Your job for tonight is to write the 1 item pattern matcher.

(assert-equal (list (T . T))  (pat-match 'a 'a))
(assert-equal NIL (pat-match 'a 'b))
(assert-equal (list ('?x . 'food)) (pat-match '?x 'food))