Reputation: 25
Is there a function in Haskell that changes ord of a Char again into the same Char?
For expample:
ord 'a' ----> 'a'
Upvotes: -7
Views: 74
Reputation: 153172
I'm not sure I understand the question, but...
> id 'a' 'a'
Upvotes: 1