gpt4 book ai didi

haskell 错误 - 输入 '=' 上的解析错误

转载 作者:行者123 更新时间:2023-12-02 07:43:10 25 4
gpt4 key购买 nike

我正在编译此代码并收到“输入 '=' 上的解析错误”错误

import System.IO  
import Data.List.Split
main = do
handle <- openFile "ac/abc" ReadMode
contents <- hGetContents handle
let xs = splitOneOf "; \n " contents
print xs
readStrList contents = do
print contents
hClose handle

请指出错误之处

最佳答案

问题出在这几行:

readStrList contents = do 
print contents

如果你试图定义readStrList,那么你需要把let放在前面:

let readStrList contents = do
print contents

关于haskell 错误 - 输入 '=' 上的解析错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9015033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com