内容跳转

BlitzMax/语言/注释

来自 Wikibooks,开放世界的开放书籍

注释是你程序代码中会被编译器忽略的文本块,但会提醒你代码如何工作。

BlitzMax 使用“'”字符支持单行注释 - 例如

Print "Comment Test"   'Everything from the apostrophe (') character to the end of line is ignored.

也支持多行注释,使用 RemEnd Rem - 例如

Rem
Blitzmax rocks!
An example of a multiline comment...
Multiline comments are useful for documenting and maintaining your code
End Rem
华夏公益教科书