Menu

c comments

Cyder

C Comments

TPP Support c-style comments, that can be used anywhere.
Before parsing, comments are replaced with a single space token, to prevent them to be used for token concantation.

/* C style comment  */
int abc = 42;

/* v Will expand to [ab][ ][c] */
ab/**/c *= 2;

s.a. [Bracket notation]