From 7e1fd378b61b002fbad4dfa60540c59b651552de Mon Sep 17 00:00:00 2001 From: Sufiyan Samnani <43895119+SufiyanSamnani@users.noreply.github.com> Date: Tue, 21 May 2019 23:47:24 -0600 Subject: [PATCH] Added some information about function composition (#28102) --- guide/english/haskell/hello-world/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/haskell/hello-world/index.md b/guide/english/haskell/hello-world/index.md index 22f320963b..a8ea5e2d2f 100644 --- a/guide/english/haskell/hello-world/index.md +++ b/guide/english/haskell/hello-world/index.md @@ -22,3 +22,4 @@ main :: IO () main = printer hello ``` +> Function compositions are a better way to write multiple nested functions in Haskell. In the above example, putStrLn.show is equivalent to (putStrLn (show)).