> I have a dream that one day my daughter will be able to use her name
> (which contains two grave accents) as a valid Haskell identifier!
Well, if the accented letters are among "aeiouy" then she already can.
If the implementation you use doesn't accept that then it's not
a Haskell implementation.
-- Lennart
PS.
dogbert% cat Name.hs
infixl 7 ?
x ? y = div x y
eAAAAAA?CEEEEIIIIDNOOOOO?UUUUY??aaaaaa?ceeeeiiiidnooooo?uuuuy?y = 42
main = print (eAAAAAA?CEEEEIIIIDNOOOOO?UUUUY??aaaaaa?ceeeeiiiidnooooo?uuuuy?y ? 2)
dogbert% hbc Name.hs
dogbert% a.out
21
dogbert%