1
1
mirror of https://github.com/thma/WhyHaskellMatters.git synced 2024-08-16 08:50:28 +03:00

Merge pull request #1 from moodmosaic/patch-1

add missing dot
This commit is contained in:
thma 2020-04-16 20:25:23 +02:00 committed by GitHub
commit adb738b335
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1572,7 +1572,7 @@ findDivRoot''' x key map = do
```
This looks quite like a sequence of statements (including variable assignments) in an imperative language.
Due to this similarity Monads have been aptly called [programmable semicolons](http://book.realworldhaskell.org/read/monads.html#id642960)
Due to this similarity Monads have been aptly called [programmable semicolons](http://book.realworldhaskell.org/read/monads.html#id642960).
But as we have seen: below the syntactic sugar it's a purely functional composition!
### Purity