開発環境
- OS X Mavericks - Apple(OS)
- BBEdit - Bare Bones Software, Inc., Emacs (Text Editor)
- Haskell (純粋関数型プログラミング言語)
- GHC (The Glasgow Haskell Compiler) (処理系)
- The Haskell Platform (インストール方法、モジュール等)
初めてのコンピュータサイエンス(Jennifer Campbell、Paul Gries、Jason Montojo、Greg Wilson(著)長尾 高弘(翻訳))の14章(GUI)、14.8(練習問題)、14-3.をHaskellで解いてみる。
その他参考書籍
- プログラミングHaskell (オーム社) Graham Hutton(著) 山本 和彦(翻訳)
- Real World Haskell―実戦で学ぶ関数型言語プログラミング (オライリージャパン) Bryan O'Sullivan John Goerzen Don Stewart(著) 山下 伸夫 伊東 勝利 株式会社タイムインターメディア(翻訳)
14.8(練習問題)、14-3.
コード(BBEdit)
Sample.hs
{-# OPTIONS -Wall -Werror #-} module Main where main :: IO () main = do mapM_ putStrLn ["x: " ++ show x, "y: " ++ show y, "(\\_ -> 3) undefined: " ++ (show $ (\_ -> (3 :: Int)) undefined)] x :: Int x = 3 y :: Int y = (\_ -> 3) undefined
入出力結果(Terminal, runghc)
$ runghc Sample.hs x: 3 y: 3 (\_ -> 3) undefined: 3 $
慣れるまでは{-# OPTIONS -Wall -Werror #-}の記述を消さずに細かく型を指定していくことに。
0 コメント:
コメントを投稿