In algebra, you don't have to put a multiplication sign in between two quantities that you want to multiply. I've seen beginning programmers write things like<br><br>    x = 3a + 4(b-c)<br><br>instead of<br><br>    x = 3*a + 4*(b-c)<br>
<br>Why should we require the stars when it's unambiguous what the first statement means?<br><br>--- Bruce<br><br>P.S. Pascal used words if ... then ... and while ... do ... and begin ... end. I like non-alpha symbols that stand out better, like colons, braces and indentation. I don't need a semicolon to tell me where the end of a line is. I only need something to tell me where the end of a line ISN'T and I handle that with prominent indentation.<br>