Case 000
Arithmetic & augmented assign
Demonstrates the two-stage ^+ rule (declare then augment) and ^* / ^0.
ok: true — round-trip fixpoint reached (python1 == python2).updated 2026-06-30
EML
emlx^+100
x^+10
x^*2
x^0Python (deterministic transpilation)
pythonx = 100
x += 10
x *= 2
print(x)stdout (executed)
text220Trace event types
eml:run:starteml:assigneml:augmenteml:augmenteml:outputeml:run:done