So sequence of inc() and dec() applying is: ``` v...
# getting-started
s
So sequence of inc() and dec() applying is:
Copy code
var a = Vec2(0,0)
// var b = a++
val prevA = a
val newA = a.inc()
a = newA
var b = prevA