Docs
In the repl:
/sqrt)
(doc math
# Find all the bindings with "push" in its name:
"push")
(doc
# Find all the bindings in the "array" module:
"array/") # Note trailing slash.
(doc
def f math/sqrt)
(# Nope.
(doc f) -of f) # There we go. (doc
To add a docstring to a module:
is a module-level docstring```)
(setdyn :doc ```This
# ... the rest of the module.
and read it as you’d expect:
> (import my-module)
repl> (doc my-module) repl