如何将一长串的论点分成几行短的?
How to break a long line of arguments into several short lines?
示例:
Log To Console This is the first argument This is the second argument This is the third argument
如何用多个短参数换行?
我尝试使用 \
或只是换行(不使用任何特殊字符),但没有用。
编辑:澄清一下 - 我想在多行中为关键字提供参数。我想将一长行源代码拆分成多行短代码。
来自User Guide:
If there is more data than readily fits a row, it possible to use ellipsis (...) to continue the previous line.
Example test [Documentation] Documentation for this test case.
... This can get quite long...
Do X one two three
... four five six
示例:
Log To Console This is the first argument This is the second argument This is the third argument
如何用多个短参数换行?
我尝试使用 \
或只是换行(不使用任何特殊字符),但没有用。
编辑:澄清一下 - 我想在多行中为关键字提供参数。我想将一长行源代码拆分成多行短代码。
来自User Guide:
If there is more data than readily fits a row, it possible to use ellipsis (...) to continue the previous line.
Example test [Documentation] Documentation for this test case.
... This can get quite long...
Do X one two three
... four five six