Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to write one function that extracts only the odd numbers from a list. Something like:

fun odd(nil) = nil
  | odd(a::nil) = a
  | odd(a::(b::c)) = a::odd(c);

But it causes this error:

operator and operand don't agree [circularity]

share|improve this question

1 Answer

In your second case odd(a::nil) = a you return a, which is a single element. In the other two cases you return a list. If you change it to odd(a::nil) = [a], so all cases return a list, it works.

share|improve this answer
Yes You are rigth. Thank You. Marco – marco Jan 10 '11 at 19:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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