最初のページ
戻る
次へ
最後のページ
図
appendとconsは違うのか?
(cons x z) ⇒ '( (b c d) a)
(append x z) ⇒ '( b c d a)
( )
a
d ( )
b
c
(append x z)
d
b
c
( )
a
(cons x z)