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.
pollen/pollen/private/dialect.rkt

14 lines
568 B
Racket

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

#lang racket/base
(require pollen/setup)
(provide (except-out (all-from-out racket/base pollen/setup) #%module-begin)
(rename-out [mb #%module-begin]) #%top-interaction)
(define-syntax-rule (mb MODE . ARGS)
(#%module-begin
(require (except-in "private/main-base.rkt" #%module-begin)
(prefix-in p: (only-in "private/main-base.rkt" #%module-begin)))
(provide (all-from-out "private/main-base.rkt")
(rename-out [mb #%module-begin]))
(define-syntax-rule (mb . OTHER-ARGS)
(p:#%module-begin MODE . OTHER-ARGS))
. ARGS))