module

[syntax] module [module-name] interface defn ... init ...

ChezScheme: Interface is a list of exports, and each export is either an identifier or (identifier export ...).

Chez's module can appear anywhere, and can close local variables visible when created.

STk, STklos, Gauche and Guile uses define-module mechanism instead.

See also import, import-only.