Created
April 23, 2013 01:55
-
-
Save joekarma/5440227 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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