2
;;Merge two sorted list into a sorted list
3
(define (list-merge a b)
7
[else (if (< (car a) (car b))
8
(cons (car a) (list-merge (cdr a) b))
9
(cons (car b) (list-merge a (cdr b))))]))
11
(list-merge '(1 10 20 30) '(2 9 15 25 42 56))
b'\\ No newline at end of file'