Compare commits
6 commits
2a278157ad
...
6fb03cda1c
Author | SHA1 | Date | |
---|---|---|---|
6fb03cda1c | |||
57b8846963 | |||
549a238bda | |||
e9bede6dda | |||
39d48f34f4 | |||
f5131b16db |
113 changed files with 706 additions and 0 deletions
7
chapter-2/ex-2.53.txt
Normal file
7
chapter-2/ex-2.53.txt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
(list 'a 'b 'c) -> (a b c)
|
||||||
|
(list (list 'george)) -> ((george))
|
||||||
|
(cdr '((x1 x2) (y1 y2))) -> ((y1 y2))
|
||||||
|
(cadr '((x1 x2) (y1 y2))) -> (y1 y2)
|
||||||
|
(pair? (car '(a short list))) -> #f
|
||||||
|
(memq 'red '((red shoes) (blue socks))) -> #f
|
||||||
|
(memq 'red '(red shoes blue socks)) -> (red shoes blue socks)
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue