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.
8 lines
330 B
8 lines
330 B
2 years ago
|
|
||
|
Exercise 4.62: Define rules to implement the
|
||
|
last-pair operation of Exercise 2.17, which returns a list
|
||
|
containing the last element of a nonempty list. Check your rules on queries
|
||
|
such as (last-pair (3) ?x), (last-pair (1 2 3) ?x) and
|
||
|
(last-pair (2 ?x) (3)). Do your rules work correctly on queries such as
|
||
|
(last-pair ?x (3))?
|