如何在haskell中获取char的ascii值?以及如何将ascii值(65,让我们说)变成char(A)?

时间:2010-12-02 15:07:07

标签: haskell char int

如何在Haskell中实现这一目标?

1 个答案:

答案 0 :(得分:11)

Hoogle是你的朋友:

http://haskell.org/hoogle/?hoogle=Char+-%3E+Int

import Data.Char   
ord 'a'
chr 98