universe@57: /* universe@57: * Many Files have license headers. universe@57: */ universe@57: // And add other stuff below. universe@57: universe@57: universe@57: int main(int argc, char* argv) { // comments behind code don't matter universe@57: universe@57: int zero /* in block comments we are genius enough to universe@57: * detect, if there is still some code in the line universe@57: */ = 0; universe@57: universe@57: /* otherwise the whole comment is universe@57: * not counted*/ universe@57: universe@57: // this holds also for this empty line universe@57: universe@57: return zero; universe@57: } universe@57: universe@57: /* rare case, but must also work: last line is a comment */