I am using the function fromEnum to convert a character to its corresponding ASCII Int. For example:
fromEnum 'A'
returns 65.
Now, assuming I had a function that did:
(fromEnum 'A')+1
And then wanted to convert the returned value (66) to a Char which would be 'B'. What is the best way of doing so?
Thanks!