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.
30 lines
709 B
Racket
30 lines
709 B
Racket
#lang racket/base
|
|
(require (for-syntax racket/base br/syntax))
|
|
(provide (for-syntax (all-from-out racket/base br/syntax)))
|
|
(provide (all-from-out racket/base) r+p)
|
|
|
|
(define-syntax-rule (r+p id ...) (begin (require id ...) (provide (all-from-out id ...))))
|
|
|
|
(r+p "helper.rkt"
|
|
sugar/debug
|
|
racket/class
|
|
racket/file
|
|
racket/match
|
|
racket/string
|
|
racket/format
|
|
racket/contract
|
|
racket/list
|
|
racket/port
|
|
racket/function
|
|
br/define
|
|
sugar/class
|
|
sugar/js
|
|
sugar/dict
|
|
sugar/stub
|
|
sugar/port)
|
|
|
|
(module reader syntax/module-reader
|
|
#:language 'fontkit/racket
|
|
#:read @-read
|
|
#:read-syntax @-read-syntax
|
|
(require (prefix-in @- scribble/reader))) |