Created
December 13, 2023 18:23
-
-
Save lindsaykwardell/ce324dc05c82b6d6d90bffd8d6e83c93 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
| animalName : Pet -> String | |
| animalName pet = | |
| if canSqueak pet then | |
| "mouse" | |
| else if canBark pet then | |
| if isScary pet then | |
| "wolf" | |
| else | |
| "dog" | |
| else if canMeow pet then | |
| "cat" | |
| else | |
| "probably a bunny" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment