
`cext-lib` contains much of the contents of `dynext`, which is no longer very widely used. Also moved the implementation of the `mzc` executable to a more appropriate package. Also, used `lazy-require` consistently for dynamically loading implementations.
10 lines
199 B
Racket
10 lines
199 B
Racket
#lang racket/base
|
|
(require racket/unit
|
|
racket/contract
|
|
"sig.rkt"
|
|
compiler/embed
|
|
"embed-sig.rkt")
|
|
|
|
(define-unit-from-context compiler:embed@ compiler:embed^)
|
|
(provide compiler:embed@)
|