01.08.2012, 20:41
Well after each bracket ({) you have to go 1 tab further. When a } is reached you have to go one tab back. This way you'll be able to see missing brackets very fast.
Example
A stupid example, but it gives a visual example. If the last } is gone you will easily see that it aint present.
Example
pawn Код:
if(something)
{
print("something is true!!");
if(anothervar)
{
print("anothervar is true!");
}
else
{
print("anothervar is false!");
}
}
print("and we go further!");