vote up 0 vote down star

Hi. I am new to Haskell, using Ghci.

I have a function, called three, that I want to write as

let three =  \x->(\y->(x(x(x y))))

OK, this works, but when I try

three (2+) 4

It does not work. Instead, I get some "cannot construct infinite type" error.

Please help me.

flag
7  
You should post the exact error message. I can't reproduce it in GHC 6.10.4, it works there. – sth Oct 28 at 18:10
Can't reproduce either. What version GHC/post the full transcript. – Ambush Commander Oct 28 at 19:40
1  
Prelude> let three = \x->(\y->(x(x(x y)))) Prelude> :type three three :: (t -> t) -> t -> t Prelude> three (2+) 4 10 – Paul Johnson Oct 28 at 21:34
5  
You could also write three better as three f = f.f.f – Paul Johnson Oct 28 at 21:35
2  
Or three = foldr (.) id . replicate 3, if you want to be pointless, err, point-free. – ephemient Oct 28 at 21:52

1 Answer

vote up 1 vote down
ghci> let three = \x->(\y->(x(x(x y))))
ghci> three (2+) 4
10
ghci> three return "deconstructivist"

<interactive>:1:6:
    Occurs check: cannot construct the infinite type: t = m t
      Expected type: t
      Inferred type: m t
    In the first argument of 'three', namely 'return'
    In the expression: three return "deconstructivist"
ghci> :t three
three :: (t -> t) -> t -> t
ghci> :t return
return :: (Monad m) => a -> m a
  • The example you supplied of three (2+) 4, works! Better check that the examples you provide actually reproduce your problem.
  • As for with a different example, like the one above with return, the thing is that return results in a different type than the one given. If the type was the same, it would be infinite (and of kind * -> * -> * -> ...), which Haskell does not support.
link|flag

Your Answer

Get an OpenID
or

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