8

there are two types of people...

if(condition){
//code
}

and

if(condition)
{
//code
}

Comments
  • 7
    There's a horrible third:
    if (condition)
    // code goes here
  • 1
    I think the two types of people are those who follow the standards of the team (yay!), and those who don't (boo)
  • 0
    I'm the first one tho
  • 0
    I've seen people write it in single line, minified-ish. Oh god!
  • 0
    in c# I'm the second one as I don't give a shit about formatting a class then when I'm done I just delete the last bracket and retype it. VS for the win.
  • 1
    Definitely the first. The second is super annoying.

    Although I'm more of a

    if condition:
    content
  • 0
    @NoNameCode forced indentation 😁😁😁
Add Comment