Haskell 中的函数保护语法

发布于 2024-11-03 05:23:28 字数 245 浏览 3 评论 0原文

fib::Int->Int
fib n
    n==0        = 1
    n>1     = error "Invalid Number"

这个函数给了我一个错误,

Syntax error in declaration (unexpected symbol "==")

我不确定这个函数有什么问题,与阅读材料相比它看起来是一样的

fib::Int->Int
fib n
    n==0        = 1
    n>1     = error "Invalid Number"

this function gives me a error

Syntax error in declaration (unexpected symbol "==")

im not sure whats wrong with the function when compare to the reading material it looks the same

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-11-10 05:23:28

您缺少一些语法:

fib :: Int -> Int
fib n 
    | n == 0  = 1
    | n > 1   = error "Invalid Number"

这也可以在没有第一个换行符的情况下编写:

fib :: Int -> Int
fib n | n == 0  = 1
      | n > 1   = error "Invalid Number"

此函数可以用 模式匹配:

fib :: Int -> Int
fib 0 = 1
fib n | n > 1 = error "Invalid number"

并且您可能对斐波那契目录

You're missing some of the syntax:

fib :: Int -> Int
fib n 
    | n == 0  = 1
    | n > 1   = error "Invalid Number"

This can also be written without the first newline:

fib :: Int -> Int
fib n | n == 0  = 1
      | n > 1   = error "Invalid Number"

This function is more naturally expressed with pattern matching:

fib :: Int -> Int
fib 0 = 1
fib n | n > 1 = error "Invalid number"

and you might be interested in the catalogue of fibonaccis.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文