Integer to String Conversion?

2001-12-03 Thread Chris

Hi everyone,

is there a function that converts Integers to Strings and vice versa?

Thanks in advance

Chris

___
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe



Re: Integer to String Conversion?

2001-12-03 Thread Mark Carroll

On Tue, 4 Dec 2001, Chris wrote:

 is there a function that converts Integers to Strings and vice versa?

Prelude (reads 123 abc) :: [(Integer, String)]
[(123, abc)]
Prelude show 123
123

HTH. (-:

-- Mark


___
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe