你遇到过的源代码中最好的注释是什么?


当前回答

在1983年的COBOL中见过:

   C   I don't know what this next bit does so I'll jump around it
       GOTO DONE.

其他回答

从Python / ceval.c:

/* This is gonna seem *real weird*, but if you put some other code between
   PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
   the test in the if statements in Misc/gdbinit (pystack and pystackv). */
Case 1:
   ...
   break;
   ...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
   break;
Repeat
    ...
Until (JesusChristsReturn) ' Not sure

大概30页的xslt的中间部分

<!-- Here be dragons  -->
i++; // increment variable i