Quote:
|
Originally Posted by Python523
Eh, it is a perfectly valid way of formatting. Some people[or a lot of programmers of other prog. languages] prefer his way, I believe. For example, Rick uses that way [if I recall correctly?]. Everyone has their own way of doing it... as long as it is some kind of standard, it's alright.
|
No, a lot of programmers put spaces between the first AND last parenthesis. Contiga and Ziro only put a space between the first parenthesis and the parameter list.
Normal way:
NPC Code:
foo( bar );
Their way:
NPC Code:
foo( bar);