View Single Post
  #42  
Old February 26th, 2004, 08:33 PM

E. Albright E. Albright is offline
Second Lieutenant
 
Join Date: Sep 2000
Location: Ohio, USA
Posts: 454
Thanks: 0
Thanked 0 Times in 0 Posts
E. Albright is on a distinguished road
Default Re: 2.08 and Incompatible Battle Reports

Quote:
Originally posted by alexti:
Some Languages consider line feeds as a language element, but not C/C++.
code:
f(); f();

and
code:
f();
f();

are the same thing.
Fair enough. However, Arryn was suggesting that your example was not analogous because the calls were in seperate statements (tho' to be fair, she used the term "lines", so the confusion is understandable). Based on presented pseudocode, JK's code at the time was supposed to resemble
code:
 f() + f(); 

whereas your example was more akin to
code:
p = f();
q = f();
r = p + q;

so your example could be deemed irrelevant. However, JK subsequently revealed the actual structure of the code, and thus demonstrated that your example was actually more analogous to it than the previously suggested Version. So my pedantic objection to your example is at least as irrelevant, if not more so...
Reply With Quote