11 lines
225 B
Scheme
11 lines
225 B
Scheme
(module base mzscheme
|
|
(require "prims.ss"
|
|
"runtime.ss")
|
|
|
|
(define base-importing-stx #'here)
|
|
|
|
(provide (all-from mzscheme)
|
|
(all-from "prims.ss")
|
|
(all-from "runtime.ss")
|
|
base-importing-stx))
|