vote up 2 vote down star

I am trying to write a function that returns the absolute value of an integer...

abs :: Int -> Int

abs n | n >= 0    = n
      | otherwise = -n


myabs :: Int -> Int

myabs n = if n >= 0 then n else -n

They both work for positive integers but not negative integers. Any idea why?

flag

3 Answers

vote up 3 vote down

Right, you usually need to parenthesise negative values to disambiguate operator precedence. For more details, see Real World Haskell chapter 1.

link|flag
vote up 3 vote down

Ahh! I didn't know you had to include brackets in...

myabs (-1)

someone pass the dunces cap. dohhh

link|flag
1  
This should be a comment (you can do that now). :) – Bill the Lizard Jul 30 at 18:47
vote up 5 vote down

Both of them seem to work just fine:

Main> myabs 1
1
Main> myabs (-1)
1
Main> abs 1
1
Main> abs (-1)
1
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.