Last active
October 30, 2017 11:59
-
-
Save Abhiroop/8b9cb21242505c870840adb1e97e77c6 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
data Color = R | B deriving Show | |
data Tree a = E | T Color (Tree a) a (Tree a) deriving Show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment