RosettaCodeData/Task/Variables/Haskell/variables-5.hs
2023-07-01 13:44:08 -04:00

3 lines
78 B
Haskell

signum x | x > 0 = 1
| x < 0 = -1
| otherwise = 0