[plt-scheme] . nitpick .
Grant Rettke skrev:
> Where is the documentation for that #% form?
>
> I remember that appearing in the group as a way to set the environment
> for the module was it? But in the documentation I don't recall if it
> was so clearly stated.
It is the standard require with a new name. It is available in
R5RS under the name #%require. If you need say srfi 1 in the
R5RS language, use:
(#%require (lib "list.ss" "srfi" "1")) .
If you need to use modules, import them:
(#%require (only mzscheme module)) .
If you like to write require instead of #%require, then
import it under its standard name:
(require (only mzscheme requrie)) .
--
Jens Axel Søgaard