scribble-enhanced/scribble-doc/scribblings/scribble/lp-ex.rkt
Matthew Flatt f9622dabf3 add scribble/lp2
Unlike `scribble/lp` a programm written with `scribble/lp2` can be used
directly, due to its `doc` submodule.
2014-12-15 18:05:14 -07:00

19 lines
322 B
Racket

#lang scribble/lp2
@(require scribble/manual)
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:
@racketblock[(define (f x)
(* x x))]