跳至内容

Skript+/注释

来自维基教科书,面向开放世界的开放教材

此页面介绍了在 Skript+ 中注释文本

若要注释一行,可以使用此方式

@ Comment text

如果你想将其作为一项语句,也可以使用此方式

Remark: Comment text

若要注释多行,请使用此方式

/*
Comment text
Blah blah
Blah blah
*/

注释可以嵌套!

同样有效

RemarkStart:
Comment text
Hi! This is a comment
RemarkEnd

这是一个带注释的脚本示例

%x%: 24 @ Declare variable with a value
Remark: Print text
Output: Hello, world!
Output: %x% /* Output the variable, x with a value of 24 */
/* Nested /* comment! */ */
RemarkStart:
Hello
RemarkStart:
Nested!
RemarkEnd
RemarkEnd
@ Another single-line comment!
RemarkStart:
Blah blah
Blah blah
RemarkEnd
华夏公益教科书