注释
您可以在您的程序中使用 ;
来添加注释。从 ;
到行尾的一切内容将被忽略。这对于解释代码非常有用,它能够帮助您以逻辑方式浏览和追踪代码。
以下代码展示了注释的使用:
; Redraw 函数的开始
Function Redraw()
...
End Function
以下代码展示了注释的另一种使用方式:
Function Redraw() ; Redraw 函数的开始
...
End Function
Last updated
您可以在您的程序中使用 ;
来添加注释。从 ;
到行尾的一切内容将被忽略。这对于解释代码非常有用,它能够帮助您以逻辑方式浏览和追踪代码。
以下代码展示了注释的使用:
; Redraw 函数的开始
Function Redraw()
...
End Function
以下代码展示了注释的另一种使用方式:
Function Redraw() ; Redraw 函数的开始
...
End Function
Last updated