♻️ refactor(playbook): streamline agents and refresh tsl docs
This commit is contained in:
@@ -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变量以及环境相关函数
|
||||
|
||||
Reference in New Issue
Block a user