31.08.2009, 21:34
Hi there. I was just reading through the pawn-lang.pdf, and I noticed a certain function: #pragma semicolon It said that when the value's set to 0 like #pragma semicolon 0, you don't have to use semicolons on one line functions, like instead of:
you can do
I was just wondering, what would be the advantages and disadvantages of this?
pawn Код:
if(pie == 1)
{
SomeFunction(playerid);
}
pawn Код:
if(pie == 1) SomeFunction(playerid)