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/pitfall/pitfall/racket.rkt

24 lines
545 B
Racket

#lang racket/base
(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"
8 years ago
"param.rkt"
"struct.rkt"
sugar/debug
racket/class
8 years ago
racket/file
racket/match
racket/string
racket/format
racket/contract
racket/list
8 years ago
racket/port
racket/function)
(module reader syntax/module-reader
8 years ago
#:language 'pitfall/racket
8 years ago
#:read @-read
#:read-syntax @-read-syntax
(require (prefix-in @- scribble/reader)))