Idiomatically determine all the lowercase and uppercase letters: Difference between revisions

m
(→‎{{header|Haskell}}: Tidied test with bimap)
Line 580:
main :: IO ()
main =
let(putStrLn label k =. unlines . (kuncurry :(<>)) $
bimap
in (putStrLn . uncurry (<>)) $
("Upper:" bimap:)
(label "Upper\nLower:" :)
(join bimap (chunksOf 70) uppersAndLowers)</lang>
(label "\nLower:")
(join bimap (chunksOf 70) uppersAndLowers)</lang>
{{Out}}
<pre>Upper:
9,655

edits