dds/scribblings/functions.scrbl

13 lines
302 B
Plaintext
Raw Normal View History

#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")
]