|
Comments
Use comments to keep parts of a script from being
read by the ND Script parser. You can use comments to include
explanatory remarks in a program. The comment character is ‘#’. Use
‘#’ symbol to start comments. The parser ignores any text between
the comment marker and the end of the line.
Example:
# This string is commented out
This one is not
|