12 lines
316 B
Plaintext
12 lines
316 B
Plaintext
/* This is a comment. */
|
|
|
|
2 + /* Comment between tokens. */ 3
|
|
|
|
"This is a string, /* NOT a comment */."
|
|
|
|
/*
|
|
* A comment can have multiple lines. These asterisks in the middle
|
|
* of the comment are only for style. You must not nest a comment
|
|
* inside another comment; the first asterisk-slash ends the comment.
|
|
*/
|