Skip to content

Instantly share code, notes, and snippets.

@paf31
Forked from emiaj/code
Created August 14, 2014 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paf31/c208988f0947b73d670d to your computer and use it in GitHub Desktop.
Save paf31/c208988f0947b73d670d to your computer and use it in GitHub Desktop.
let isEven :: Number -> Boolean
isEven 0 = false
isEven 1 = false
isEven 2 = true
isEven n = isEven(n-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment