Comments

Within a KCM Core script, you can use two comments styles.

Line comment

Line comments start with a hash. Everything from the hash symbol up to the end of the line is ignored.

Syntax

 # Followed by comment

Block comment

Block comments are enclosed within a /* … */ pair and can span multiple lines. Block comments can be nested.

Syntax

 /*
This is a multi line /* nested */ block comment.
*/