I'd like to be able to use compound assignment and increment expressions in the set variable action.
For example right now to increment a variable its:
variable = variable + 1
but compound assignment would allow
variable += 1
and increment would be
variable ++