在haskell中使用ord函数不是范围

时间:2014-11-28 21:33:35

标签: haskell

非常简单,我想使用函数ord将字符转换为整数,但是它不会自动加载到前奏中,因为它说:

*Main> ord 'a'

<interactive>:55:1:
Not in scope: ‘ord’
Perhaps you meant one of these:
  ‘odd’ (imported from Prelude), ‘or’ (imported from Prelude)

为了天堂的缘故,我怎么能用它?

1 个答案:

答案 0 :(得分:16)

您需要先导入Data.Char

import Data.Char