vote up -1 vote down star

Quick Quiz?

What language has comments with side effects? In essence, comments which are not comments...

flag

65% accept rate
ce.sharif.edu/~cheraghchi/helloworld/… – BCS Dec 15 '08 at 23:00
The first language I saw with options to compile some comments as code was PL/C which was based on PL/I. Also in C and C++ it would be fair to consider most #pragma directives as comments except for exceptions, because compilers have to ignore them except for the ones they understand. – Windows programmer Dec 15 '08 at 23:35

7 Answers

vote up 3 vote down check

I can think of several places where comments aren't really comments.

  • HTML and script tags (providing support for browsers that don't allow or support scripts).

And then, considerably more obscurely:

  • IBM Informix 4GL (I4GL) and 4J's Genero (successor to Informix Dynamic 4GL, D4GL). The notation '--#' was used by D4GL to include material only applicable to D4GL; I4GL would see that as a comment. The inverse notation was '--@', which looked like a comment to D4GL but was treated as active material by I4GL.

And, even more obscurely:

  • I wrote an I4GL file which was dual-languaged, exploiting I4GL's multiple comment facilities. Material starting '#' (hash) marked the start of a comment outside of strings - up to the next newline, as does '--' (double-dash). Also, '{...}' (braces) enclose multiline comments.
  • The top of the source file was actually a shell script, mostly enclosed in '{...}' which is, of course, perfectly legitimate in shell. The shell script was a data-driven code generator that copied itself to the top of the output, and then generated about 100 functions which were all depressingly similar but slightly different (in a language without templates or a pre-processor). The code had to validate what was in the database for a given ship against incoming data from an external source (Lloyds of London, in fact), to see what had changed since the last time the external data was received. Non-trivial comparison work, especially since it had to deal with database (SQL) nulls.
  • The file was not really a Quine program, but it had some points in common with it. In particular, you could feed the script broken I4GL code and the regenerated file would be perfect again, basically because it ignored the existing I4GL code.
link|flag
vote up 2 vote down

English. Do I win?

link|flag
You sure do. Answering a closed question. You'd better have a talk with the person who closed the question. – Windows programmer Dec 15 '08 at 23:36
Nah, he's an idiot. – MusiGenesis Dec 16 '08 at 6:12
Your answer is 'not-programming-related' hehe – victor hugo May 24 at 19:32
vote up 2 vote down

Haskell can turn the usual comments in code paradigm upside down by having code in comments - also Mathematica and the like; literal programming is a nice feature for the more mathematically inclined languages.

I also find annotations in Java are like comments with behaviour.

link|flag
Another example of code in comments: embedding PHP or similar in an HTML comment. (Some less sophisticated syntax-highlighting editors will miss this.) – Stewart Jul 28 at 10:20
vote up 2 vote down

DOS Batch Shell programming

The REM (Remark) allows you to put in a comment. But it has the side-effect of modifying the ERRORLEVEL variable to 0.

In a sense, it makes last operation a success.

I don't know how a comment can fail, but if it does, you are covered.

link|flag
Originally, the Bourne shell did not support '#' comments; you used the ':' operator and a string for them. That would succeed, so the status variable $? would be reset to 0. – Jonathan Leffler Dec 28 '08 at 17:36
vote up 1 vote down

Then of course there are "polyglots" -- programs which can be compiled/executed in multiple languages. Usually these rely on the fact that the same line is a comment in one language, but an actual line of code in another.

link|flag
vote up 0 vote down

CSS for clever cross-browser hacks. Of course, I wouldn't really call CSS a language.

link|flag
I don't think interpreter implementation bugs would count. – Greg Hewgill Dec 15 '08 at 23:35
vote up 0 vote down

QBasic has a use of comments all its own: REM $STATIC or REM $DYNAMIC set how arrays are allocated.

Another example: When web browsers parse comments <!-- -- -->in<!-- -- -->correctly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.