
The "racket" directory contains a pared-back version of the repository, roughly. The "pkgs" directory everything else in the repository, but organized into packages. original commit: b2ebb0a28bf8136e75cd98316c22fe54c30eacb2
22 lines
449 B
Racket
22 lines
449 B
Racket
#lang scribble/manual
|
|
|
|
@(require scribble/eval)
|
|
|
|
@title{Pretty-Print-Handler Bug Example}
|
|
|
|
@(define the-eval (make-base-eval))
|
|
@(interaction-eval
|
|
#:eval the-eval
|
|
(begin
|
|
(require racket/pretty)
|
|
(current-print pretty-print-handler)))
|
|
|
|
@examples[#:eval the-eval
|
|
'((x "positional 1")
|
|
(rest ("positional 2" "positional 3"))
|
|
(a ())
|
|
(b ("b-arg"))
|
|
(c (("first c1" "second c1") ("first c2" "second c2")))
|
|
(d #f)
|
|
(e ()))]
|