27.07.2013, 17:44
The code between two curly brackets (braces) should be tabbed in a level, for example:
It makes code easier to read and makes missing brackets easier to find (although, prevention is better than cure).
pawn Код:
SomeFunction()
{
if(contition)
{
if(some_other_condition)
{
// Code
}
}
}