Created
November 4, 2017 14:33
-
-
Save denisshevchenko/d6e351371573e6e4a9e3fa7c941691c7 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
getHeightOfTheSecondDoor :: House -> Height | |
getHeightOfTheSecondDoor (House _ doors _) = height | |
where | |
(Door _ height _) = secondDoor | |
secondDoor = doors !! 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment