mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-14 00:01:36 -04:00
13 lines
193 B
Plaintext
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
|
|
*/
|