hyper-literate/collects/scribblings/scribble/doclang.scrbl
Matthew Flatt 6dddce4c26 doc reference work, especially chars, bytes, and namespaces
svn: r6858

original commit: 8d75dfcba5df96f4e8b2eec05f5840f79b032d1a
2007-07-08 12:37:53 +00:00

19 lines
773 B
Racket

#reader(lib "docreader.ss" "scribble")
@require[(lib "manual.ss" "scribble")]
@require["utils.ss"]
@title[#:tag "doclang"]{Document Module Language}
The @file{doclang.ss} module is suitable for use as a module
language. It provides everything from @scheme[mzscheme], except that
it replaces the @scheme[#%module-begin] form.
The @file{doclang.ss} @scheme[#%module-begin] essentially packages the
body of the module into a call to @scheme[decode], binds the result to
@scheme[doc], and exports @scheme[doc].
Any module-level form other than an expression (e.g., a
@scheme[require] or @scheme[define]) is remains at the top level, and
the @scheme[doc] binding is put at the end of the module. As usual, a
module-top-level @scheme[begin] slices into the module top level.