Good morning,

The following haskell program :

--<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
module Main where

accentLetters :: String
accentLetters = "יאפ"

main :: IO ()
main = do putStr (show accentLetters)
-->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

after being compiled will give the result :

"\233\224\244"

But, exactly the same program, without the "show" function will give the result:

יאפ

Is there some way to have "show" show all the printable characters, even those
represented by a value greater than the US-ASCII 7 bits (127) ?

Thank you

Francis Girard
LE CONQUET
France



_______________________________________________
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Reply via email to