19 lines
615 B
Racket
19 lines
615 B
Racket
#lang scribble/doc
|
|
@(require scribble/manual
|
|
scribble/bnf
|
|
"common.rkt"
|
|
(for-label racket/base))
|
|
|
|
@title[#:tag "expand"]{@exec{raco expand}: Macro Expansion}
|
|
|
|
The @exec{raco expand} command macro-expands and pretty-prints the
|
|
contents of the given source files. See also @racket[expand].
|
|
|
|
Command-line flags:
|
|
|
|
@itemlist[
|
|
@item{@Flag{n} @nonterm{n} or @DFlag{columns} @nonterm{n} --- format output for a display with @nonterm{n} columns}
|
|
@item{@Flag{h} or @DFlag{help} --- show help information for this command}
|
|
@item{@DFlag{} --- do not treat remaining arguments as switches}
|
|
]
|