Last active
May 23, 2021 14:57
-
-
Save yanyingwang/d4313b161ad94c48f1d1bf2c073e1459 to your computer and use it in GitHub Desktop.
racket scribble helpers
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 (examples/racket-input stx) | |
(syntax-case stx () | |
[(_ content ...) | |
#'(begin | |
(linebreak) | |
(linebreak) | |
(bold "Examples:") | |
(racketinput content) ...)])) | |
@examples/racket-input[ | |
(displayln "sfsf") | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment