You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The most straightforward and important test is missing for environments: the test whether environments are truely lexical
(def! a 12)
(def! fx (fn* () a)
(fx)
(def! a 2000)
(fx)
My implementation gave 12, 2000 of (fx) and apparently this should be 12,12 .
So I have heard, but I could be mistaken. The more reason to put this test in.
The text was updated successfully, but these errors were encountered:
@albertvanderhorst That's a good test. The first call to fx should be 12, the second 2000 (because function creation should bind the current environment and def! I created a PR that includes another env binding test here: #677 so I'm going to close this issue now.
The most straightforward and important test is missing for environments: the test whether environments are truely lexical
My implementation gave 12, 2000 of (fx) and apparently this should be 12,12 .
So I have heard, but I could be mistaken. The more reason to put this test in.
The text was updated successfully, but these errors were encountered: