[Haskell-cafe] Re: Int-[Char] conversion

2006-08-16 Thread Jón Fairbairn
Tamas K Papp [EMAIL PROTECTED] writes: Hi, I am working through Hal Daume's tutorial, trying to do the exercises. I can't figure out how to output an integer with putStrLn (or any other way), I think I need an Int - [Char] conversion but couldn't find it. Specifically, in Exercise 3.10, I

Re: [Haskell-cafe] Re: Int-[Char] conversion

2006-08-16 Thread Neil Mitchell
Hi, You could try Hoogle URL: http://haskell.org/hoogle/ , though entering Int - [Char] isn't very helpful, A known issue, Hoogle 4 will know about [Char] = String, and will also be tweaked to give show first in this instance. Thanks Neil ___

Re: [Haskell-cafe] Re: Int-[Char] conversion

2006-08-16 Thread ivan gomez rodriguez
Neil Mitchell wrote: Hi, You could try Hoogle URL: http://haskell.org/hoogle/ , though entering Int - [Char] isn't very helpful, A known issue, Hoogle 4 will know about [Char] = String, and will also be tweaked to give show first in this instance. Thanks Neil