Comments 

You add comments to your BlitzScripts using the ';' semi-colon. BlitzScript3D requires you to close every comment with ';'. Everything between two ';' will be ignored by the Compiler. The Compiler enforces the use of comments. Below are examples of good and bad comment usage:

Problem Bad Syntax Good Syntax
Single Line
Missing Close ';'
;Hello World ;Hello World;
Single Line Consecutive Comments ;Hello; ;World; ;Hello World;
Multiple Line Consecutive Comments ;Hello;
;=========;
;World;

;Hello
==========
World;

Consecutive ';' ; ; ; Avoid Them. Follow the Good Syntax Rules Above.