Created
February 24, 2015 22:54
-
-
Save LeifW/952d123340276b41e821 to your computer and use it in GitHub Desktop.
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
| foo : Maybe Type -> Type | |
| foo Nothing = String | |
| foo (Just x) = x | |
| a : foo Nothing | |
| a = "Hello" | |
| b : foo (Just Int) | |
| b = 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment