20.07.2013, 19:08
Quote:
I fucking hate that indentation style. It makes your code really messy and unreadable.. I much prefer having my brackets aligned.
|
When I'm using Visual Studio to code in winJS (Java Script for Windows, Windows 8 apps) it automatically corrects my brackets to Luis' method.
pawn Code:
public Moo() {
if(CowMoos == true) {
Cow = 1;
}
return 1;
}
pawn Code:
public Moo()
{
if(CowMoos == true)
{
Cow = 1;
}
return 1;
}