(define x (list 1 2 3)) (define y (list 4 5 6))
解释器对于下面各个表达式将打印出什么结果:
(append x y) (cons x y) (list x y)
(append x y)
(cons x y)
(list x y)