mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
5 lines
86 B
Haskell
5 lines
86 B
Haskell
|
module Codewars.Kata.Opposite where
|
||
|
|
||
|
opposite :: Num a => a -> a
|
||
|
opposite num = - num
|