Case 002
Conditional & membership
Ternary ?: and inclusive-range membership (in [1:100] → range(1, 101)).
ok: true — round-trip fixpoint reached (python1 == python2).updated 2026-06-30
EML
emlx^+50
x > 40 ? 1 : 0 => y
y^0
x in [1:100] => inRange
inRange^0Python (deterministic transpilation)
pythonx = 50
y = 1 if x > 40 else 0
print(y)
inRange = x in range(1, 101)
print(inRange)stdout (executed)
text1
TrueTrace event types
eml:run:starteml:assigneml:assigneml:outputeml:assigneml:outputeml:run:done