BlitzMax/语言/注释
外观
注释是你程序代码中会被编译器忽略的文本块,但会提醒你代码如何工作。
BlitzMax 使用“'”字符支持单行注释 - 例如
Print "Comment Test" 'Everything from the apostrophe (') character to the end of line is ignored.
也支持多行注释,使用 Rem 和 End Rem - 例如
Rem Blitzmax rocks! An example of a multiline comment... Multiline comments are useful for documenting and maintaining your code End Rem