reha@orion.UUCP (12/06/83)
For you C history bufs: Back in the old days of the V6 PDP 11 C compiler there were two partially implemented operators; the "min" and the "max" operators. Lexically the "max" operator was "/\" and the "min" operator was "\/". So you could write expressions like: a = a /\ 10; to give you the maximum of a or 10. The only problem was that even though the operators existed the code generators table were not defined. It is intersting to speculate why the operators died prematurely. They died in the V7 release of the compiler.