Created
April 7, 2016 11:46
-
-
Save bradparker/b553497478e1b687fce22ca4a1de6c59 to your computer and use it in GitHub Desktop.
Type aliases
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
type AssociativeList key value = [(key, value)] | |
type Name = String | |
type PhoneNumber = String | |
type PhoneBook = AssociativeList Name PhoneNumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment