2006-04-09から1日間の記事一覧

文字と文字列、リスト

'(シングルクォート)'でかこむ文字はChar型。 Prelude> :type 'a' 'a' :: Char "(ダブルクォート)"でかこんだ文字列はChar型のリスト。[]でかこまれてるのがリストのしるし。 Prelude> :type "abc" "abc" :: [Char] Prelude> :type ['a','b','c'] ['a','…

GHCi

GHCiは対話的に操作できるインタプリタ。:help コマンドで使い方がわかる。 >ghci ___ ___ _ / _ \ /\ /\/ __(_) / /_\// /_/ / / | | GHC Interactive, version 6.4.1, for Haskell 98. / /_\\/ __ / /___| | http://www.haskell.org/ghc/ \____/\/ /_/\___…