1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/8kyu/even_or_odd/solution.hs

5 lines
118 B
Haskell
Raw Normal View History

module EvenOrOdd where
evenOrOdd :: Integral a => a -> [Char]
evenOrOdd n = if (mod n 2) == 0 then "Even" else "Odd"