56:ed65f8c73fb2 | 57:68018eac46c3 |
---|---|
1 /* | |
2 * Many Files have license headers. | |
3 */ | |
4 // And add other stuff below. | |
5 | |
6 | |
7 int main(int argc, char* argv) { // comments behind code don't matter | |
8 | |
9 int zero /* in block comments we are genius enough to | |
10 * detect, if there is still some code in the line | |
11 */ = 0; | |
12 | |
13 /* otherwise the whole comment is | |
14 * not counted*/ | |
15 | |
16 // this holds also for this empty line | |
17 | |
18 return zero; | |
19 } | |
20 | |
21 /* rare case, but must also work: last line is a comment */ |