Closed apt1002 closed 2 months ago
When compiling e.g.
for i of my_range(5) { print(i) }
The compiler outputs
let _for = ArkUndefined;
but _for is a valid Ursa identifier. Use $for instead, or better, $iter.
_for
$for
$iter
When compiling e.g.
The compiler outputs
but
_for
is a valid Ursa identifier. Use$for
instead, or better,$iter
.