31.05.2013, 11:42
You are constantly overwriting the previous one. It's the same as doing
If it seems logical what happens here, then why can't it be logical what happens in your code?
pawn Код:
a = 42;
a = 43;
a = 44;
print("%d", a);