我是Haskell的新手,正在尝试玩它。因此,我想在文件中定义一些函数,然后将其加载到ghci
中。
我有一个名为tryout.hl
的文件,我想使用其中一个将其加载到ghci
中
:l tryout
或:load tryout.hl
。使用这两个命令,我得到target ‘tryout’ is not a module name or a source file
。
我在做什么错了?
这是我的外壳历史:
[user@pc](~/proggin/haskell)$ ls -lah
total 12K
drwxr-xr-x 2 user users 4.0K Oct 14 05:07 .
drwxr-xr-x 14 user users 4.0K Oct 13 07:51 ..
-rw-r--r-- 1 user users 138 Oct 14 05:07 tryout.hl
[user@pc](~/proggin/haskell)$ cat tryout.hl
take' :: (Num i, Ord i) => i -> [a] -> [a]
take' n _
| n <= 0 = []
take' _ [] = []
take' n (x:xs) = x : take' (n-1) xs
[user@pc](~/proggin/haskell)$ ghci
GHCi, version 8.4.3: http://www.haskell.org/ghc/ :? for help
Prelude> :!pwd
/home/user/proggin/haskell
Prelude> :!ls
tryout.hl
Prelude> :l tryout
target ‘tryout’ is not a module name or a source file
Prelude> :load tryout.hl
target ‘tryout.hl’ is not a module name or a source file
答案 0 :(得分:6)
Haskell源文件的扩展名应为hs
。重命名文件可以使其正常工作:
$ mv tryout.hl tryout.hs
ghci
中的演示:
λ> :l tryout.hl
target ‘tryout.hl’ is not a module name or a source file
λ> :l tryout.hs
[1 of 1] Compiling Main ( tryout.hs, interpreted )
Ok, one module loaded.