Case 001
Summation (Σ) over an inclusive range
The canonical EML demo: an algebraic-sum intent compressed into one symbol.
ok: true — round-trip fixpoint reached (python1 == python2).updated 2026-06-30
EML
emlN^+100
Σ(i^2, i in [1:N]) => r
r^0Python (deterministic transpilation)
pythonN = 100
r = sum(i**2 for i in range(1, N+1))
print(r)stdout (executed)
text338350