Created
April 12, 2019 22:21
-
-
Save LeifAndersen/26cb7aa365a9d7b038805665df40e7fa 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
#lang scratch | |
(provide blue) | |
(define blue 42) | |
(define bind | |
(parameterize ([current-load-relative-directory "/"]) | |
(syntax-binding-set->syntax | |
(syntax-binding-set-extend | |
(syntax-binding-set) | |
'blue | |
0 | |
(module-path-index-join "h.rkt" #f)) | |
'blue))) | |
(eval bind) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment