Version: 5.1.3
26 Requiring Modules
(require unstable/require) |
This module provides tools for importing from modules.
(require/provide module-path ...) |
Re-exports all bindings provided by each module-path. Equivalent to:
(require module-path ...) (provide (all-from-out module-path ...))
(quote-require require-spec ...) |
Produces the names exported by the require-specs as a list of symbols.
Example: | ||
|