Partially applied functions should be able to take arguments immediately #51
Labels
No Label
accepted
bug
clj
documentation
enhancement
errors
infrastructure
later
next
now
optimization
proposal
question
research
semantics
syntax
ux
vm
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: twc/ludus#51
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?
At issue:
div (_, 2) (6)
Expected:
3
Received:
(6)
This was either solved in my approach to giving partially applied functions better names, OR was not an issue at all; one snafu here is that
base
builtin functions may not be partially applied. So I may have been trying to partially applyadd
rather than a Ludus-definedfn myadd (x, y) -> add (x, y)
. In any event, it works now.