Skip to content

Instantly share code, notes, and snippets.

@MiyamonY
Created February 27, 2015 09:50
Show Gist options
  • Save MiyamonY/231d443d0188f8217a13 to your computer and use it in GitHub Desktop.
Save MiyamonY/231d443d0188f8217a13 to your computer and use it in GitHub Desktop.
main :: IO ()
main = interact shortLinesOnly
shortLinesOnly :: String -> String
shortLinesOnly = unlines . filter (\ s -> length s < 10) . lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment