Files
dockerized-swg-src/utils/mocha/test/comments.script
T
2015-08-02 11:38:07 -05:00

13 lines
193 B
Plaintext

// A line comment on its own line
int a = 5; // A line comment after a statement
int a = // A line comment in the middle of a multiline statement
5;
/* A
block comment
here
*/