racket/collects/scribblings/scribble/lp-ex.ss
Matthew Flatt db70d62ca7 adjust scribble/lp docs
svn: r13859
2009-02-26 22:49:07 +00:00

18 lines
294 B
Scheme

#lang scribble/lp
Literate programs have chunks of code, like this one:
@chunk[<f>
(define (f x)
<fs-body>)]
and this one:
@chunk[<fs-body>
(* x x)]
that, when assembled, produce a complete program, in this case:
@schemeblock[(define (f x)
(* x x))]