Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created May 13, 2015 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/594a963c3706fbf8f02e to your computer and use it in GitHub Desktop.
Save shigemk2/594a963c3706fbf8f02e to your computer and use it in GitHub Desktop.
i’m short
so am i
i am a loooooooooong line!!!
yeah i’m long so what hahahaha!!!!!!
short line
loooooooooooooooooooooooooooong
short
main = do
contents <- getContents
putStr (shortLinesOnly contents)
shortLinesOnly :: String -> String
shortLinesOnly = unlines . filter (\line -> length line < 10) . lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment