jakie8
09-10-2008, 05:53 PM
x=5
x=x+2 (Which redefines x as 7)
x+=2 (shortcut)
x=x*3 (which defines x as 15)
x*=3 (shortcut)
My question is:
x=x-6
What would be the shortcut for that?
x=x+2 (Which redefines x as 7)
x+=2 (shortcut)
x=x*3 (which defines x as 15)
x*=3 (shortcut)
My question is:
x=x-6
What would be the shortcut for that?