If we want to write i = i + 1, we could use ++i.
I wonder if there is also a short expression for i = i + 2 (or any number > 2)?
I wonder if there is also a short expression for i = i + 2 (or any number > 2)?
In writing code, I can replaceI can then suggest using the expression macro expansion operator
withCode:local i = `i' + 1 ..... `i' ....
Is there a similar shortcut when adding some number other than 1?Code:..... `++i' ....
..... `=`i'+42' ....
Comment