/usr/lib/help/module is in scheme9 2013.11.26-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | S9 LIB (module <name> <definition> ...) ==> unspecific
(using <name> (<name_i> ...) <expression> ...) ==> object
(load-from-library "simple-modules.scm")
Simple modules. Inside of a MODULE expression, DEFINE defines
a local object and DEFINE* defines a public object. <Name> names
the module itself.
Expressions inside of USING may use all <name_i>'s that are
being imported from the module <name>.
(begin ; Note: BEGIN is only needed for automatic testing
(module math
(define* (fact x)
(if (= 0 x) 1 (* x (fact (- x 1))))))
(using math (fact)
(fact 5))) ==> 120
|