
Moved mred to private/mred and created a new mred that just re-exports the definitions from the private module. This change is intended to allow for contracts to be added later to where the definitions are re-exported. original commit: 60d0e5b886c9e249a03251b4af15fc0f5407643b
5 lines
92 B
Racket
5 lines
92 B
Racket
#lang racket/base
|
|
|
|
(require "private/mred.rkt")
|
|
(provide (all-from-out "private/mred.rkt"))
|