On a post on a site I first saw this, previously I only saw it in java. My question is, what is the proper way of writing your curly brackets according to the unspoken rules of programming that everybody always talk about?
Option A :
If( a==b){
//code here
}
Option B:
If(a==b)
{
//code here
}
Are both accepted, or does it just very from person to person. Thank you!