Echunga
If there's one thing that inflames the passion of programmers, it's indentation style. I've been working out my own for some years, since before the advent of the C programming language, so it's not surprising that it's at variance with other indentation styles.
I started programming in Algol 60; an early program of mine, written in 1971, included this function (sorry, procedure) declaration:
'PROCEDURE' CHECK M AND NU (A);
'VALUE' A; 'REAL' A;
'BEGIN' 'REAL' B;
B:=K(A); NU:=H(A)*DELTA X/B;
'COMMENT' IF THE PARAMETER NU HAS CHANGED IN SUCH A WAY THAT 00018820
M < 2*NU+2, THEN THE SOLUTION IS NO LONGER STABLE: MAKE M 00018830
EQUAL ARBITRARILY TO 4 OR 2*NU+3, WHICHEVER IS THE GREATER, AND 00018850
RECALCULATE DELTA T; 00018870
'IF' M < 2*NU+2 ! M<2 'THEN'
'BEGIN'
M:='IF' NU> .5 …[Read more]