16.07.2010, 15:43
Hey everyone. Just wanted to know if there is a difference (according to the speed) between:
and
I know, the differences will be real small, but i wonder which is actually the faster version.
Thanks!
pawn Код:
if(x==0)print("x=0");
pawn Код:
switch(x){case 0:print("x=0");}
Thanks!