Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Comment

Syntax

CommentDefinition :
LineComment | BlockComment

LineComment :
// .* NL

BlockComment :
/* .* */

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.