Integer to String Conversion?

Mark Carroll mark@chaos.x-philes.com
Mon, 3 Dec 2001 19:51:34 -0500 (EST)


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