why those chinese indent code so differently?
- by winston
currently i am working with some programmer from shanghai
i notice they have some coding indentation like these:
if(1==1 && 2==2)
{
a = 3;
}
else
{
b = 4;
}
however i am accustomed to:
if (1==1 && 2==2) {
a = 3;
}
else {
b = 4;
}
what do you think?
how could i get rid of different coding styles within a single program…