summaryrefslogtreecommitdiff
path: root/shortlines.hs
blob: 267e595be771a257e38c0e40438be41dd5b98099 (plain)
1
2
3
4
5
6
7
import Data.Char

main = do
    contents <- getContents
    let shortLines = unlines . filter ((<10).length) . lines in
        putStr $ shortLines contents