j
k
j a
j l
Maurício wrote:
main = mapM_ ((putStrLn "") >*> putStrLn) $ map show [1,2,3]
Using only standard combinators: main = mapM_ ((putStrLn "" >>) . putStrLn) $ map show [1,2,3] Zun.
Back to the thread
Back to the list