1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 21:49:22 +01:00

Merge pull request #4008 from izerobit/patch-1

[haskell/zh-cn]Update haskell-cn.html.markdown
This commit is contained in:
Max Schumacher 2020-09-24 18:59:42 +02:00 committed by GitHub
commit 1e480bab31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ snd ("haskell", 1) -- 1
-- 一个接受两个变量的简单函数
add a b = a + b
-- 注意,如果你使用 ghci (Hakell 解释器),你需要使用 `let`,也就是
-- 注意,如果你使用 ghci (Haskell 解释器),你需要使用 `let`,也就是
-- let add a b = a + b
-- 调用函数