view test.hs @ 3033:1e8f2306e633

<Phantom_Hoover> addquote <oerjan> this new apartment stuff has interesting side effects: i\'m now getting physical spam.
author HackBot
date Sun, 02 Jun 2013 20:04:33 +0000
parents 831ffc1f8007
children
line wrap: on
line source

import Data.Maybe (catMaybes)
import Data.List (group, sort, stripPrefix)
main = mapM_ putStrLn . map (\s -> head s ++ " occurs->" ++ show (length s)) . group . sort . catMaybes . map (stripPrefix "username:" . (!!2) . words) . lines =<< getContents