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]
|
I'd like to write one function that extracts only the odd numbers from a list. Something like:
But it causes this error:
|
||||
|
|
|
In your second case |
|||
|
|