Created
November 5, 2019 22:44
-
-
Save LeifAndersen/9bdc9ea583be6be891af1aea197d6a4a to your computer and use it in GitHub Desktop.
This file contains 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
(module foo racket | |
(provide x) | |
(define-syntax x 5)) | |
(module bar racket | |
(require (for-syntax (submod ".." foo))) | |
(provide (for-syntax x))) | |
(require (submod "." bar)) | |
(module->exports (quote-module-path bar)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment