mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
11 lines
390 B
Haskell
11 lines
390 B
Haskell
|
module Kata where
|
||
|
|
||
|
data Operation = Add | Divide | Multiply | Subtract deriving (Eq, Show, Enum, Bounded)
|
||
|
|
||
|
arithmetic :: Fractional a => a -> a -> Operation -> a
|
||
|
arithmetic a b operator = case operator of
|
||
|
Add -> (a + b)
|
||
|
Divide -> (a / b)
|
||
|
Multiply -> (a * b)
|
||
|
Subtract -> (a - b)
|