CONVERT_TO_INCREMENTOR
Default: YES
Options: YES, NO
When set to YES, Click! converts:
s = s + 1
s := s - 1
x := x + ( anyvar + anyfunc() )
test=test-1// with a comment
q = q * 14
... to ...
s ++
s --
x += ( anyvar + anyfunc() )
test -- // with a comment
q *= 14