我今天开始使用Haskell,我在ghci上执行的所有功能都会显示此消息。我只是想知道为什么会这样。 我知道有很多关于此的问题,但这是一个简单的案例,我需要在开始时理解这个错误
function3 :: Int -> [Int]
function3 x = [a | a <- [1..x] mod a x == 0]
答案 0 :(得分:16)
在GHCi中键入函数类型时是否发生错误?
$ ghci
GHCi, version 8.0.1: http://www.haskell.org/ghc/ :? for help
Prelude> function3 :: Int -> [Int]
<interactive>:1:1: error:
Variable not in scope: function3 :: Int -> [Int]
Prelude>
如果是这种情况,则必须使用多行输入
Prelude> :{
Prelude| function3 :: Int -> [Int]
Prelude| function3 x = [a | a <- [1..x], mod a x == 0]
Prelude| :}
在,
mod
或者,为了更好的工作流程,您可以使用:load
将代码保存到文件并加载到GHCi中$ cat tmp/functions.hs
function3 :: Int -> [Int]
function3 x = [a | a <- [1..x], mod a x == 0]
$ ghci
GHCi, version 8.0.1: http://www.haskell.org/ghc/ :? for help
Prelude> :l tmp/functions.hs
[1 of 1] Compiling Main ( tmp/functions.hs, interpreted )
Ok, modules loaded: Main.
*Main> :t function3
function3 :: Int -> [Int]
*Main>
答案 1 :(得分:0)
对我来说,它在打开新会话后尝试在 ghci 中 :reload
我的 .hs
文件,但执行 :load full_file_name.hs
解决了问题。