Posted by: DavidW
« on: June 20, 2022, 09:37:21 PM »Ah. OK, that makes sense. Just a special case of - being a pain. Sorry for false alarm.
OUTER_SET x = 10
OUTER_SET x -= 2
PRINT "%x%" // output: 8
OUTER_SET x-=2
PRINT "%x-%" // output: 2
OUTER_SET x=10
OUTER_SET x-=2
PRINT "%x%"
Should be 8, actually is 10.