当我在 ghci 中做一些简单的事情时,如下所示:
let x = 7 + 2
我希望 ghci 给出 x 持有的类型的响应,例如:
x :: Integer
当我运行 ghci 时,我没有得到上面的那一行。我如何得到这样的回应?
要自动显示类型,请使用:set +t
:
μ> :set +t
μ> let x = 7 + 2
x :: Integer
μ>
使用 ghci:t
命令,如下所示:
Prelude> let x = 7 + 2
Prelude> :t x
x :: Integer
Prelude>
要在 GHCi 中查找某物的类型,您可以使用:type
命令,或者(更常见)缩写为:t
. 有了这个,您可以执行以下操作:
Prelude> let x = 7 + 2
Prelude> :t x
x :: Integer