Expression 1:
(define c (lambda (x, y) (if (< x 9) (list x (c (+ x 1) 0)) (list 8 9) ) ) ) (next (next (c 1 0)))