Created
August 4, 2016 18:43
-
-
Save eduardoleon/311f0a5eacb327b11237da937ec629aa to your computer and use it in GitHub Desktop.
Haskell is logically unsound
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Control.Monad | |
newtype Mu a = Mu { unMu :: Mu a -> a } | |
bottom :: a | |
bottom = id <*> Mu $ join unMu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment