Skip to content

Instantly share code, notes, and snippets.

@mmitou
Created December 4, 2012 11:26
Show Gist options
  • Save mmitou/4202864 to your computer and use it in GitHub Desktop.
Save mmitou/4202864 to your computer and use it in GitHub Desktop.
Hadoopテスト mapper
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