-
-
Save emiaj/ed09befa7616f1992273 to your computer and use it in GitHub Desktop.
This file contains 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
let isEven :: Number -> Boolean | |
let isEven 0 = false | |
let isEven 1 = false | |
let isEven 2 = true | |
let isEven n = isEven(n-1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment