Prelude> read "1234" :: Int
1234
Prelude> read "1234" :: String
"*** Exception: Prelude.read: no parse

Why?

Michael