Created
November 8, 2023 07:09
-
-
Save samdphillips/6adbc8d17857819fdf2e7458212f8b37 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
(define-syntax-parse-rule (with-env ([var val] ...) body ...+) | |
(call-with-env | |
(make-environment-variables | |
(~@ (string->bytes/locale var) | |
(string->bytes/locale val)) ...) | |
(λ () body ...))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment