aboutsummaryrefslogtreecommitdiff
path: root/doc/docs/zh
diff options
context:
space:
mode:
Diffstat (limited to 'doc/docs/zh')
-rw-r--r--doc/docs/zh/doc/language-basics/operator.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/docs/zh/doc/language-basics/operator.md b/doc/docs/zh/doc/language-basics/operator.md
index d948667..fc2a49d 100644
--- a/doc/docs/zh/doc/language-basics/operator.md
+++ b/doc/docs/zh/doc/language-basics/operator.md
@@ -347,6 +347,7 @@ readFile "example.txt"
347"你好" |> print 347"你好" |> print
3481 |> print 2 -- 将管道项作为第一个参数插入 3481 |> print 2 -- 将管道项作为第一个参数插入
3492 |> print 1, _, 3 -- 带有占位符的管道 3492 |> print 1, _, 3 -- 带有占位符的管道
350
350-- 多行的管道表达式 351-- 多行的管道表达式
351readFile "example.txt" 352readFile "example.txt"
352 |> extract language, {} 353 |> extract language, {}