Hello There, Guest! Login or Register


Clean up;
#5
I find too much spacing frustrating - I want to be able to get right at the code without a bunch of spaces in the way. Personal taste here as pointed out, but I find spacing at array indexes quite annoying, and I usually strip them from my code.

I tend to like adding the opening bracket on a new line if it's a function header, but otherwise it's a meh.

Whatever works, I've just seen some awful stuff in old code recently like this:

Code:
if(expression){
    statements;
    }

Really confusing to read, meh.

Apart from the spacing at the array positions, I don't mind other syntaxes mentioned. Meh.
Reply


Messages In This Thread
Clean up; - by tomozj - 09-14-2008, 12:29 PM
Re: Clean up; - by Badeend - 09-16-2008, 03:02 AM
Re: Clean up; - by dab - 09-16-2008, 05:28 AM
Re: Clean up; - by Pugwipe - 09-16-2008, 10:21 AM
Re: Clean up; - by tomozj - 09-16-2008, 04:19 PM