Feuergeist
Feuergeist

Reputation: 25

Is there a function in Haskell that changes ord of a Char again into the same Char?

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

Answers (1)

Daniel Wagner
Daniel Wagner

Reputation: 153172

I'm not sure I understand the question, but...

> id 'a'
'a'

Upvotes: 1

Related Questions