You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/quad/quad/lang.rkt

8 lines
224 B
Racket

#lang racket/base
(require (for-syntax racket/base))
(provide (rename-out [quad-mb #%module-begin])
#%top-interaction)
(define-syntax (quad-mb stx)
(syntax-case stx ()
[(_ . ARGS) #'(#%module-begin . ARGS)]))