Created
June 8, 2014 16:56
-
-
Save stibear/890d0e755d1495555db3 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
(define-library (test 1) | |
(import (scheme base)) | |
(define (hoge) | |
(list 'hoge)) | |
(define-syntax fuga | |
(syntax-rules () | |
((_) | |
(hoge)))) | |
(export hoge fuga)) | |
(define-library (test 2) | |
(import (test 1)) | |
(export (rename hoge foo) | |
fuga)) | |
(import (test 2)) | |
(fuga) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment