pythonizer icon indicating copy to clipboard operation
pythonizer copied to clipboard

Pre-increment as a statement doesn't generate proper code

Open snoopyjc opened this issue 3 years ago • 1 comments

Pre-increment as a statement doesn't generate proper code:

++$i;

should generate the same code as:

$i++;

snoopyjc avatar Nov 12 '21 05:11 snoopyjc

Fixed in https://github.com/snoopyjc/pythonizer

snoopyjc avatar Feb 07 '22 16:02 snoopyjc