12 lines
295 B
Racket
12 lines
295 B
Racket
#lang scribble/manual
|
|
@(require (for-label racket graph))
|
|
|
|
@title[#:tag "utils"]{dds/utils: Various Utilities}
|
|
|
|
@racketblock[
|
|
(define (nobody-understands-me what)
|
|
(list "When I think of all the"
|
|
what
|
|
"I've tried so hard to explain!"))
|
|
(nobody-understands-me "glorble snop")
|
|
]
|