13 lines
302 B
Text
13 lines
302 B
Text
|
#lang scribble/manual
|
||
|
@(require (for-label racket graph))
|
||
|
|
||
|
@title[#:tag "functions"]{dds/functions: Formal Functions}
|
||
|
|
||
|
@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")
|
||
|
]
|