31.10.2015, 23:55
Today I learned that you can have concurrent operations using the comma operator.
Which outputs 30 for as the value stored in "i".
Код:
new i, j; j = 0; i = (j++, j+=1, j+=1, j *= 2, j /= 10, j += 15, j * 2);