打开主菜单
首页
随机
登录
设置
关于wrc's Wiki
免责声明
wrc's Wiki
搜索
查看“Haskell”的源代码
←
Haskell
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
[[Category:Haskell]] Haskell 是一种函数式编程语言。 == 笔记 == === <code>let</code> 与 <code>where</code> === <code>let</code> 是一个表达式,而 <code>where</code> 不是。<code>where</code> 用于给多个 guard 创建 binding,如下: <syntaxhighlight lang=haskell> f x y | y > z = ... | y == z = ... | y < z = ... where z = x * x </syntaxhighlight> 三个 guard 都可使用 <code>z</code>。用 <code>let</code> 无法达到以上的效果。<ref>https://stackoverflow.com/q/4362328/10974106</ref><ref>[https://www.cse.iitb.ac.in/~as/fpcourse/haskell98_tutorial/patterns.html A Gentle Introduction to Haskell] 4.5 Lexical Scoping and Nested Forms</ref> == 另见 == * [[Functor, Applicative 和 Monad]] == 外部链接 == * [https://www.haskell.org/ 主页] * [http://cheatsheet.codeslower.com/CheatSheet.pdf Haskell CheetSheet] == 参考资料 == <references />
该页面使用的模板:
模板:Code
(
查看源代码
)
返回至
Haskell
。