diff options
| author | Li Jin <dragon-fly@qq.com> | 2026-02-13 08:45:19 +0800 |
|---|---|---|
| committer | Li Jin <dragon-fly@qq.com> | 2026-02-13 08:45:19 +0800 |
| commit | ecd8f3bfd07e91d04e0a2d72f4a50f9cc6c75433 (patch) | |
| tree | 0d34d71cb16bdd80cebfb7bd0a56d97f5232095c | |
| parent | e54d664e32a9ea97e852f9cb817535490a34e0fe (diff) | |
| download | yuescript-ecd8f3bfd07e91d04e0a2d72f4a50f9cc6c75433.tar.gz yuescript-ecd8f3bfd07e91d04e0a2d72f4a50f9cc6c75433.tar.bz2 yuescript-ecd8f3bfd07e91d04e0a2d72f4a50f9cc6c75433.zip | |
| -rw-r--r-- | doc/docs/de/doc/language-basics/operator.md | 1 | ||||
| -rw-r--r-- | doc/docs/doc/language-basics/operator.md | 1 | ||||
| -rw-r--r-- | doc/docs/id-id/doc/language-basics/operator.md | 1 | ||||
| -rw-r--r-- | doc/docs/pt-br/doc/language-basics/operator.md | 1 | ||||
| -rw-r--r-- | doc/docs/zh/doc/language-basics/operator.md | 1 | ||||
| -rw-r--r-- | doc/yue-de.md | 1 | ||||
| -rw-r--r-- | doc/yue-en.md | 1 | ||||
| -rw-r--r-- | doc/yue-id-id.md | 1 | ||||
| -rw-r--r-- | doc/yue-pt-br.md | 1 | ||||
| -rw-r--r-- | doc/yue-zh.md | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/doc/docs/de/doc/language-basics/operator.md b/doc/docs/de/doc/language-basics/operator.md index 12143d5..3be5ec8 100644 --- a/doc/docs/de/doc/language-basics/operator.md +++ b/doc/docs/de/doc/language-basics/operator.md | |||
| @@ -347,6 +347,7 @@ readFile "example.txt" | |||
| 347 | "hello" |> print | 347 | "hello" |> print |
| 348 | 1 |> print 2 -- Pipe-Element als erstes Argument einfügen | 348 | 1 |> print 2 -- Pipe-Element als erstes Argument einfügen |
| 349 | 2 |> print 1, _, 3 -- Pipe mit Platzhalter | 349 | 2 |> print 1, _, 3 -- Pipe mit Platzhalter |
| 350 | |||
| 350 | -- Pipe-Ausdruck über mehrere Zeilen | 351 | -- Pipe-Ausdruck über mehrere Zeilen |
| 351 | readFile "example.txt" | 352 | readFile "example.txt" |
| 352 | |> extract language, {} | 353 | |> extract language, {} |
diff --git a/doc/docs/doc/language-basics/operator.md b/doc/docs/doc/language-basics/operator.md index 6de5c17..caeb6f4 100644 --- a/doc/docs/doc/language-basics/operator.md +++ b/doc/docs/doc/language-basics/operator.md | |||
| @@ -347,6 +347,7 @@ readFile "example.txt" | |||
| 347 | "hello" |> print | 347 | "hello" |> print |
| 348 | 1 |> print 2 -- insert pipe item as the first argument | 348 | 1 |> print 2 -- insert pipe item as the first argument |
| 349 | 2 |> print 1, _, 3 -- pipe with a placeholder | 349 | 2 |> print 1, _, 3 -- pipe with a placeholder |
| 350 | |||
| 350 | -- pipe expression in multiline | 351 | -- pipe expression in multiline |
| 351 | readFile "example.txt" | 352 | readFile "example.txt" |
| 352 | |> extract language, {} | 353 | |> extract language, {} |
diff --git a/doc/docs/id-id/doc/language-basics/operator.md b/doc/docs/id-id/doc/language-basics/operator.md index 6e0030a..b2b1003 100644 --- a/doc/docs/id-id/doc/language-basics/operator.md +++ b/doc/docs/id-id/doc/language-basics/operator.md | |||
| @@ -347,6 +347,7 @@ readFile "example.txt" | |||
| 347 | "hello" |> print | 347 | "hello" |> print |
| 348 | 1 |> print 2 -- sisipkan nilai pipe sebagai argumen pertama | 348 | 1 |> print 2 -- sisipkan nilai pipe sebagai argumen pertama |
| 349 | 2 |> print 1, _, 3 -- pipe dengan placeholder | 349 | 2 |> print 1, _, 3 -- pipe dengan placeholder |
| 350 | |||
| 350 | -- ekspresi pipe multi-baris | 351 | -- ekspresi pipe multi-baris |
| 351 | readFile "example.txt" | 352 | readFile "example.txt" |
| 352 | |> extract language, {} | 353 | |> extract language, {} |
diff --git a/doc/docs/pt-br/doc/language-basics/operator.md b/doc/docs/pt-br/doc/language-basics/operator.md index 6371343..e0c0872 100644 --- a/doc/docs/pt-br/doc/language-basics/operator.md +++ b/doc/docs/pt-br/doc/language-basics/operator.md | |||
| @@ -347,6 +347,7 @@ readFile "example.txt" | |||
| 347 | "hello" |> print | 347 | "hello" |> print |
| 348 | 1 |> print 2 -- insere o item do pipe como primeiro argumento | 348 | 1 |> print 2 -- insere o item do pipe como primeiro argumento |
| 349 | 2 |> print 1, _, 3 -- pipe com um placeholder | 349 | 2 |> print 1, _, 3 -- pipe com um placeholder |
| 350 | |||
| 350 | -- expressão pipe em multilinha | 351 | -- expressão pipe em multilinha |
| 351 | readFile "example.txt" | 352 | readFile "example.txt" |
| 352 | |> extract language, {} | 353 | |> extract language, {} |
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 |
| 348 | 1 |> print 2 -- 将管道项作为第一个参数插入 | 348 | 1 |> print 2 -- 将管道项作为第一个参数插入 |
| 349 | 2 |> print 1, _, 3 -- 带有占位符的管道 | 349 | 2 |> print 1, _, 3 -- 带有占位符的管道 |
| 350 | |||
| 350 | -- 多行的管道表达式 | 351 | -- 多行的管道表达式 |
| 351 | readFile "example.txt" | 352 | readFile "example.txt" |
| 352 | |> extract language, {} | 353 | |> extract language, {} |
diff --git a/doc/yue-de.md b/doc/yue-de.md index 4db290b..9149231 100644 --- a/doc/yue-de.md +++ b/doc/yue-de.md | |||
| @@ -4510,6 +4510,7 @@ readFile "example.txt" | |||
| 4510 | "hello" |> print | 4510 | "hello" |> print |
| 4511 | 1 |> print 2 -- Pipe-Element als erstes Argument einfügen | 4511 | 1 |> print 2 -- Pipe-Element als erstes Argument einfügen |
| 4512 | 2 |> print 1, _, 3 -- Pipe mit Platzhalter | 4512 | 2 |> print 1, _, 3 -- Pipe mit Platzhalter |
| 4513 | |||
| 4513 | -- Pipe-Ausdruck über mehrere Zeilen | 4514 | -- Pipe-Ausdruck über mehrere Zeilen |
| 4514 | readFile "example.txt" | 4515 | readFile "example.txt" |
| 4515 | |> extract language, {} | 4516 | |> extract language, {} |
diff --git a/doc/yue-en.md b/doc/yue-en.md index 04ef456..a3d98d3 100644 --- a/doc/yue-en.md +++ b/doc/yue-en.md | |||
| @@ -4514,6 +4514,7 @@ readFile "example.txt" | |||
| 4514 | "hello" |> print | 4514 | "hello" |> print |
| 4515 | 1 |> print 2 -- insert pipe item as the first argument | 4515 | 1 |> print 2 -- insert pipe item as the first argument |
| 4516 | 2 |> print 1, _, 3 -- pipe with a placeholder | 4516 | 2 |> print 1, _, 3 -- pipe with a placeholder |
| 4517 | |||
| 4517 | -- pipe expression in multiline | 4518 | -- pipe expression in multiline |
| 4518 | readFile "example.txt" | 4519 | readFile "example.txt" |
| 4519 | |> extract language, {} | 4520 | |> extract language, {} |
diff --git a/doc/yue-id-id.md b/doc/yue-id-id.md index 63e1969..365ee32 100644 --- a/doc/yue-id-id.md +++ b/doc/yue-id-id.md | |||
| @@ -4508,6 +4508,7 @@ readFile "example.txt" | |||
| 4508 | "hello" |> print | 4508 | "hello" |> print |
| 4509 | 1 |> print 2 -- sisipkan nilai pipe sebagai argumen pertama | 4509 | 1 |> print 2 -- sisipkan nilai pipe sebagai argumen pertama |
| 4510 | 2 |> print 1, _, 3 -- pipe dengan placeholder | 4510 | 2 |> print 1, _, 3 -- pipe dengan placeholder |
| 4511 | |||
| 4511 | -- ekspresi pipe multi-baris | 4512 | -- ekspresi pipe multi-baris |
| 4512 | readFile "example.txt" | 4513 | readFile "example.txt" |
| 4513 | |> extract language, {} | 4514 | |> extract language, {} |
diff --git a/doc/yue-pt-br.md b/doc/yue-pt-br.md index 65e332a..ad0521a 100644 --- a/doc/yue-pt-br.md +++ b/doc/yue-pt-br.md | |||
| @@ -4509,6 +4509,7 @@ readFile "example.txt" | |||
| 4509 | "hello" |> print | 4509 | "hello" |> print |
| 4510 | 1 |> print 2 -- insere o item do pipe como primeiro argumento | 4510 | 1 |> print 2 -- insere o item do pipe como primeiro argumento |
| 4511 | 2 |> print 1, _, 3 -- pipe com um placeholder | 4511 | 2 |> print 1, _, 3 -- pipe com um placeholder |
| 4512 | |||
| 4512 | -- expressão pipe em multilinha | 4513 | -- expressão pipe em multilinha |
| 4513 | readFile "example.txt" | 4514 | readFile "example.txt" |
| 4514 | |> extract language, {} | 4515 | |> extract language, {} |
diff --git a/doc/yue-zh.md b/doc/yue-zh.md index 96e19ba..d026fc2 100644 --- a/doc/yue-zh.md +++ b/doc/yue-zh.md | |||
| @@ -4500,6 +4500,7 @@ readFile "example.txt" | |||
| 4500 | "你好" |> print | 4500 | "你好" |> print |
| 4501 | 1 |> print 2 -- 将管道项作为第一个参数插入 | 4501 | 1 |> print 2 -- 将管道项作为第一个参数插入 |
| 4502 | 2 |> print 1, _, 3 -- 带有占位符的管道 | 4502 | 2 |> print 1, _, 3 -- 带有占位符的管道 |
| 4503 | |||
| 4503 | -- 多行的管道表达式 | 4504 | -- 多行的管道表达式 |
| 4504 | readFile "example.txt" | 4505 | readFile "example.txt" |
| 4505 | |> extract language, {} | 4506 | |> extract language, {} |
