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