2 lines
60 B
Common Lisp
2 lines
60 B
Common Lisp
(deftype pair (&key (car 't) (cdr 't))
|
|
`(cons ,car ,cdr))
|
(deftype pair (&key (car 't) (cdr 't))
|
|
`(cons ,car ,cdr))
|