Haskell Add
add :: Num a => a -> a -> a
add param1 param2 = param1 + param2
This just adds the two input numbers with the language’s normal arithmetic and returns the sum.
add :: Num a => a -> a -> a
add param1 param2 = param1 + param2
This just adds the two input numbers with the language’s normal arithmetic and returns the sum.