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.
// this is a comment line c1: SelArticle(); // select an article
Block comments are bounded between /* and */. Nested comments are also allowed.
/********************************** * this is a valid comment * **********************************/
/* this is a valid /* nested */ comment */