fix Burroughs's name
This commit is contained in:
parent
3dc49139cf
commit
11f76cbebf
|
@ -79,11 +79,11 @@ The difference is that each @racket[_id] is available for use in later
|
||||||
visible one.
|
visible one.
|
||||||
|
|
||||||
@examples[
|
@examples[
|
||||||
(let* ([x (list "Borroughs")]
|
(let* ([x (list "Burroughs")]
|
||||||
[y (cons "Rice" x)]
|
[y (cons "Rice" x)]
|
||||||
[z (cons "Edgar" y)])
|
[z (cons "Edgar" y)])
|
||||||
(list x y z))
|
(list x y z))
|
||||||
(let* ([name (list "Borroughs")]
|
(let* ([name (list "Burroughs")]
|
||||||
[name (cons "Rice" name)]
|
[name (cons "Rice" name)]
|
||||||
[name (cons "Edgar" name)])
|
[name (cons "Edgar" name)])
|
||||||
name)
|
name)
|
||||||
|
@ -93,7 +93,7 @@ In other words, a @racket[let*] form is equivalent to nested
|
||||||
@racket[let] forms, each with a single binding:
|
@racket[let] forms, each with a single binding:
|
||||||
|
|
||||||
@interaction[
|
@interaction[
|
||||||
(let ([name (list "Borroughs")])
|
(let ([name (list "Burroughs")])
|
||||||
(let ([name (cons "Rice" name)])
|
(let ([name (cons "Rice" name)])
|
||||||
(let ([name (cons "Edgar" name)])
|
(let ([name (cons "Edgar" name)])
|
||||||
name)))
|
name)))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user