test/testfile.c

Fri, 03 Jun 2022 20:06:08 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 03 Jun 2022 20:06:08 +0200
changeset 67
767fe7a007f7
parent 66
be2084398c37
permissions
-rw-r--r--

Added tag v1.4 for changeset be2084398c37

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

mercurial