-
Notifications
You must be signed in to change notification settings - Fork 1
/
chapter8.rkt
35 lines (31 loc) · 1.01 KB
/
chapter8.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(define (close-enough? v1 v2)
(< (abs (- v1 v2)) 0.001))
;; Exercise 8.1.1
(cons 'Mercury
(cons 'Venus
(cons 'Earth
(cons 'Mars
(cons 'Jupiter
(cons 'Saturn
(cons 'Uranus
(cons 'Neptune empty))))))))
(cons 'steak
(cons 'pommes-frites
(cons 'beans
(cons 'bread
(cons 'water
(cons 'juice
(cons 'brie-cheese
(cons 'ice-cream empty))))))))
(cons 'red
(cons 'oragen
(cons 'yellow
(cons 'green
(cons 'blue
(cons 'indigo
(cons 'violet
empty)))))))
(cons 'RobbyRound
(cons 3
(cons true
empty)))