You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Exercise 2.26: Suppose we define x and
|
|
y to be two lists:
|
|
|
|
|
|
(define x (list 1 2 3))
|
|
(define y (list 4 5 6))
|
|
|
|
What result is printed by the interpreter in response to evaluating each of the
|
|
following expressions:
|
|
|
|
|
|
(append x y)
|
|
(cons x y)
|
|
(list x y)
|
|
|