Last active
August 29, 2015 14:27
-
-
Save yoshitsugu/49ad7511cf26bc99e9bf to your computer and use it in GitHub Desktop.
((->) Int ) 型もモナドとなる
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Control.Applicative | |
hoge :: Int -> Int | |
hoge = (*) 2 | |
fuga :: Int -> Int | |
fuga = (+) 1 | |
piyo :: Int -> Int | |
piyo = (+) <$> hoge <*> fuga | |
main = print $ piyo 2 -- => 7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment