Created
December 4, 2012 11:26
-
-
Save mmitou/4202864 to your computer and use it in GitHub Desktop.
Hadoopテスト mapper
This file contains hidden or 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 System.IO | |
| import Control.Applicative | |
| import Control.Monad | |
| main = do | |
| isEnd <- isEOF | |
| unless isEnd $ do | |
| ws <- words <$> getLine | |
| forM_ ws $ \w -> do | |
| putStrLn (w ++ "\t1") | |
| main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment