Files
hakorune/apps/nyfmt-poc/compound-assign-roundtrip.hako

12 lines
121 B
Plaintext

# Round-trip triad: Compound Assign
# Before (sugar)
i += 1
# Canonical
# i = i + 1
# Round-Trip (expected)
# i += 1