functions defined in functions should properly close over upvalues the second time they are run #96
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: twc/ludus#96
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There's a stack discipline problem with
print!
:Time to debug this!
Having an issue with map, probably just a code error!to `print!` should observe stack disciplineNew datum:
More minimal example:
What's happening is that
fn mapper
inmap
inprelude
at line 276 is closing overinc
as the function to apply in the mapper, but not re-closingdec
the second time it's called.`print!` should observe stack disciplineto functions defined in functions should properly close over upvalues the second time they are runMost minimal example: