Open isaacg1 opened 9 years ago
Assigning to lambda variables doesn't work properly.
m,=d1dU4d
outputs
[[1, 0], [1, 1], [1, 2], [1, 3]] 1
[[1, 0], [1, 1], [1, 2], [1, 3]]
1
It appears the assignment happens at the global scope, but the lambda function can't see this global scope.
Fixed by 0100c1f95628c47c0a25d1165a66f591fbe5fb60, but watch out for bugs.
There were bugs, the above commit was reverted. This issue remains.
Assigning to lambda variables doesn't work properly.
m,=d1dU4d
outputs
[[1, 0], [1, 1], [1, 2], [1, 3]]
1
It appears the assignment happens at the global scope, but the lambda function can't see this global scope.