beautiful-racket/beautiful-racket-lib/br/quicklang.rkt
Matthew Butterick e0b5855e3e add br/quicklang
2016-07-09 15:11:24 -07:00

14 lines
357 B
Racket

#lang br
(provide (except-out (all-from-out br) #%module-begin)
(rename-out [quicklang-mb #%module-begin]))
(define-syntax-rule (quicklang-mb . lines)
(#%module-begin
(provide #%top #%app #%datum #%top-interaction)
. lines))
(module reader syntax/module-reader
#:language 'br/quicklang
#:info br-get-info
(require br/get-info))