♻️ refactor(playbook): streamline agents and refresh tsl docs

This commit is contained in:
csh
2026-01-10 16:55:44 +08:00
parent b529012c59
commit 5822a8736d
88 changed files with 103561 additions and 130104 deletions
+11 -35
View File
@@ -49,25 +49,13 @@ ECHO和WRITE,WRITELN等输出函数被重定向,不再输出,用UnSetEchoStr
范例
```text
//先输出111222,接着另起一行显示空白,再接着另起一行输出333
writeln("111","222");
```tsl
// 先输出111222,接着另起一行显示空白,再接着另起一行输出333
writeln("111", "222");
writeln("333");
{结果页面中,运行信息下打印:
111222
333
}
```
@@ -75,26 +63,14 @@ writeln("333");
范例
```text
//先输出123456,接着另起一行输出789
write("123","456");
write("789");
return ;
{在结果页面中打印:
123456
789}
```tsl
// 先输出123456,接着另起一行输出789
write("123", "456");
write("789");
return;
{在结果页面中打印:
123456
789}
```
#### CGI变量以及环境相关函数