mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
4 lines
103 B
Haskell
4 lines
103 B
Haskell
module Codewars.Kata.Negative where
|
|
|
|
makeNegative :: (Num a, Ord a) => a -> a
|
|
makeNegative n = - abs n
|