Skip to content

Instantly share code, notes, and snippets.

@lindsaykwardell
Created December 13, 2023 18:23
Show Gist options
  • Select an option

  • Save lindsaykwardell/ce324dc05c82b6d6d90bffd8d6e83c93 to your computer and use it in GitHub Desktop.

Select an option

Save lindsaykwardell/ce324dc05c82b6d6d90bffd8d6e83c93 to your computer and use it in GitHub Desktop.
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