Skip to content

Instantly share code, notes, and snippets.

@tibbe
Created September 9, 2010 08:50
Show Gist options
  • Save tibbe/571598 to your computer and use it in GitHub Desktop.
Save tibbe/571598 to your computer and use it in GitHub Desktop.
even :: Int -> Bool
even x = x `mod` 2 == 0
test :: [Int] -> [Int]
test xs = filter even xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment