bs Comments

Insert comments after the // characters in BeasScript.

 

For example:

// Display "Hello world"

messagebox="Hello world"

 

A comment is always applied to the whole line. It is not allowed to insert comment syntax after a command in a line.

WRONG!

messagebox="Hello world" // Display Hello world <- Incorrect

 

Multiline comments are not supported.

WRONG!

/*

this is incorrect

*/

 

The following is the correct way to comment multiple lines:

//

// This is correct

//