gpt4 book ai didi

haskell - Let .. in 语句在 IO 中不起作用?

转载 作者:行者123 更新时间:2023-12-02 21:06:55 24 4
gpt4 key购买 nike

我几乎无法区分“where”和“let .. int”语句。这是我的代码。我想要 2 种方法来打印 5。

main =  do
print x
where x = 5
let x = 5 in print x

第一个有效,但我收到“输入‘let’时出现解析错误”这是缩进的问题,还是我的代码完全错误?

最佳答案

where 总是结束语句; where 之后不应该出现任何内容。所以,你可以这样写:

main = do
let x = 5 in print x
print x
where x = 5

这是有效的,因为 where 子句结束了语句,它应该属于该语句。您的代码无效,因为解析器希望在 where x = 5 之后找不到任何内容,但却发现了您的 let 子句。

关于haskell - Let .. in 语句在 IO 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38231757/

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