Comments

Line comments

Silk Performer provides the // operator for managing comments at line level. All the characters of the current line following the // operator are marked as a comment.

Example

// this is a comment line
c1: SelArticle(); // select an article

Block comments

Block comments are bounded between /* and */. Nested comments are also allowed.

Example

/**********************************
* this is a valid comment *
**********************************/
/* this is a valid /* nested */ comment */
注: Comments are not permitted inside a SQL command.