Comments

Line Comment

// this is a line comment

3 + 4; // is 7

Block Comment

Any text between /* and */ is ignored

/*This is a multi-line comment. */

3 + 4; /* is 7 */

Comments Cannot be Nested

/* comment cannot be nested
/* error */
*/