Skip to content

Instantly share code, notes, and snippets.

@joekarma
Created April 23, 2013 01:55
Show Gist options
  • Save joekarma/5440227 to your computer and use it in GitHub Desktop.
Save joekarma/5440227 to your computer and use it in GitHub Desktop.
(defpackage :foo
(:use :cl)
(:export :baz))
(in-package :foo)
(defun baz ()
3)
(defpackage :bar
(:use :cl :foo)
(:export :baz))
(in-package :bar)
(defun baz ()
5)
(bar:baz) ;; => 5
(foo:baz) ;; => 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment