のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

real world haskell 第3章 練習問題 P62

これでいいんだ。

toList (Cons x xs) = x : (toList xs)
toList Nil = []