Skip to content

Instantly share code, notes, and snippets.

@stibear
Created June 8, 2014 16:56
Show Gist options
  • Save stibear/890d0e755d1495555db3 to your computer and use it in GitHub Desktop.
Save stibear/890d0e755d1495555db3 to your computer and use it in GitHub Desktop.
(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