Export

(export function-name1 ...) -> #f

Used at the end of a module. Any defined functions or values that should be included in globals must be exported.

Example:
In the file "test.ms", found in the "lib" subdirectory, you will see
(export *spot-test?* do-s do-r do-t spot-report main enable-spot-tests disable-spot-tests)

at the end of the file.

See Also: import, module