diff --git a/manual/Modules b/manual/Modules
index bdbcacd..5d6c6f4 100644
|
a
|
b
|
Imports {{IMPORT ...}} and automatically exports all imported identifiers.
|
| 166 | 166 | This can be used to build ''compound modules'': modules that just extend |
| 167 | 167 | other modules: |
| 168 | 168 | |
| 169 | | <scheme> |
| | 169 | <enscript highlight=scheme> |
| 170 | 170 | (module r4rs () |
| 171 | 171 | (import scheme chicken) |
| 172 | 172 | (reexport |
| 173 | 173 | (except scheme |
| 174 | 174 | dynamic-wind values call-with-values eval scheme-report-environment |
| 175 | 175 | null-environment interaction-environment))) |
| 176 | | </scheme> |
| | 176 | </enscript> |
| 177 | 177 | |
| 178 | 178 | |
| 179 | 179 | === import libraries |