Comment
Syntax
CommentDefinition :
LineComment | BlockCommentLineComment :
//.*NLBlockComment :
/*.**/
Example
// This is a line comment!
/// This is a line comment as well!
/*
  This is a
    multiline
  block comment!
*/
Explanation
Contents of comments are ignored by the parser.