Skip to content

Instantly share code, notes, and snippets.

@MiniXC
Created October 16, 2017 13:25
Show Gist options
  • Save MiniXC/b4d90a4cd8c55e34cce058433ba42623 to your computer and use it in GitHub Desktop.
Save MiniXC/b4d90a4cd8c55e34cce058433ba42623 to your computer and use it in GitHub Desktop.
halveEvens :: [Int] -> [Int]
halveEvens xs = [x `div` 2 | x <- xs, x `mod` 2 == 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment