Quote:
Originally Posted by Freaksken
Omg, that syntax actually works in Pawn? Didn't even know! Glad I learned something!
Код:
//This:
if(1000 < price && price < 200000) {
...
}
//Is the same as this:
if(1000 < price < 200000) {
...
}
//And it actually works in this language.
|
People have said that it is slower. So you aren't really optimizing anything.