1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 05:21:26 +02:00

Update haskell-cn.html.markdown

misspellings
This commit is contained in:
izerobyte
2020-09-09 09:44:16 +08:00
committed by GitHub
parent 11520e91a1
commit 292e041289

View File

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