为什么会出现解析错误,如何在haskell中解决此错误?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么会出现解析错误,如何在haskell中解决此错误?相关的知识,希望对你有一定的参考价值。
我是Haskell的新手,在阅读真实世界的Haskell时遇到了一个问题:
Q)使用前面第71页的“简单命令行框架”一节中的命令框架,编写一个程序来打印其输入的每一行的第一个单词。
命令框架是:
-- file: ch04/InteractWith.hs
-- Save this in a source file, e.g., Interact.hs
import System.Environment (getArgs)
interactWith function inputFile outputFile = do
input <- readFile inputFile
writeFile outputFile (function input)
main = mainWith myFunction
where mainWith function = do
args <- getArgs
case args of
[input,output] -> interactWith function input output
_ -> putStrLn "error: exactly two arguments needed"
-- replace "id" with the name of our function below
myFunction = id
我对这个问题的解决方法是:
-- file: ch04/InteractWith.hs
-- Save this in a source file, e.g., Interact.hs
import System.Environment (getArgs)
interactWith function inputFile outputFile = do
input <- readFile inputFile
writeFile outputFile (function input)
main = mainWith myFunction
where mainWith function = do
args <- getArgs
case args of
[input,output] -> interactWith function input output
_ -> putStrLn "error: exactly two arguments needed"
-- replace "id" with the name of our function below
myFunction = concat (map (++"
") (map head (map words (lines input))))
按照说明,每当我尝试使用ghc --make filename
编译该程序时,都会出现解析错误,即
error: parse error on input ‘args’
|
36 | args <- getArgs
| ^^^^
答案
您的缩进已关闭。
以上是关于为什么会出现解析错误,如何在haskell中解决此错误?的主要内容,如果未能解决你的问题,请参考以下文章