mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
5 lines
118 B
Haskell
5 lines
118 B
Haskell
|
module EvenOrOdd where
|
||
|
|
||
|
evenOrOdd :: Integral a => a -> [Char]
|
||
|
evenOrOdd n = if (mod n 2) == 0 then "Even" else "Odd"
|