Skip to content

Instantly share code, notes, and snippets.

@ktakashi
Created December 15, 2013 09:03
Show Gist options
  • Save ktakashi/7970597 to your computer and use it in GitHub Desktop.
Save ktakashi/7970597 to your computer and use it in GitHub Desktop.
<bottom>
(define-method last ((o <bottom>)) (print 'bottom) (call-next-method))
(define-method last ((o <top>)) (print 'top) o)
(print (last 'ok))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment