#lang scribble/lp2 @(require scribble/manual) Literate programs have chunks of code, like this one: @chunk[ (define (f x) )] and this one: @chunk[ (* x x)] that, when assembled, produce a complete program, in this case: @racketblock[(define (f x) (* x x))]