Skip to content

Instantly share code, notes, and snippets.

@ashiato45
Created April 11, 2015 16:45
Show Gist options
  • Save ashiato45/900a976bc88a596f835c to your computer and use it in GitHub Desktop.
Save ashiato45/900a976bc88a596f835c to your computer and use it in GitHub Desktop.
import Control.Applicative
main = do
let a = sequence $ repeat getLine
let b = (takeWhile (<5)) <$> ((read <$>) <$> a)
(putStrLn.show) <$> b
return ()
@ashiato45
Copy link
Author

5未満の数字なら入力し続けることができるが、それより大きい数を入力したら止まるプログラムを書きたかった

@ashiato45
Copy link
Author

すごいHの9章を読もう

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment