Keyword Reference


#comments-start

Specify that an entire section of script should be commented out.

#comments-start
...
...
#comments-end

Parameters

None.

Remarks

The #comments-start and #comments-end directives can be nested.
You can also use the abbreviated keywords #cs and #ce.
Additionally, the directives themselves can be commented out!

Related

Example


#comments-start
    MsgBox(4096, "", "This won't be executed")
    MsgBox(4096, "", "Or this")
#comments-end

;;; #cs
MsgBox(4096, "", "This will print if '#cs/#ce' are commented out.")
;;; #ce