Keyword Reference

#comments-start

スクリプト内でコメントアウトする部分を指定します。

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

 

パラメータ

なし。

 

注意

#comments-start、#comments-end による指定は入れ子構造にできます。
#cs#ceと略して書くこともできます。
さらに、これらのコメントアウトの指定をコメントアウトすることもできます!

 

関連

 


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

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