Comments in kaoscript are very similar to comments in C.
A single-line comment begins with //. Everything between // and the end of line is ignored.
// a single line comment
A multiline comment begins with /* and ends with */.
/*
a multiline comment
TODO: test
*/
Multiline comments in kaoscript can be nested inside other multiline comments.
It enable you to comment out large blocks of code, even if it contains multiline comments.
/*
a multiline comment
/* can be nested */
a multiline comment
*/