[net.followup] C style fortifications

stan (10/28/82)

The sad thing is, the following program compiles and prints out the
integers from one to nine.

ma/*ny programs like this can w*/in()
{
	in/*teger storage, one word uni*/t a,b;

	b = 0;
	for (a = 0; a<10; a++) {
		i/*f and only i*/f (a =/*equivalence*/= b)
			/*of*/ co/*urse, here we co*/ntinue;
		prin/*t ou*/t/* to the */f/*ile*/("%d\n",/*the v*/a/*riable*/);
	}
}