RosettaCodeData/Task/Inheritance-Single/Common-Lisp/inheritance-single-3.lisp

10 lines
253 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
;;; ASN.1 serialization logic specialized for animal class
(defmethod serialize-to-asn-1 ((a animal))
#| ... |#
)
;;; casually introduce the method over strings too; no relation to animal
(defmethod serialize-to-asn-1 ((s string))
#| ... #|
)