Hacker News new | ask | show | jobs
by pjtr 634 days ago
Is "let-over-lambda" (variable capture / closure) not possible in F#? Is that not a form of implicit dependency injection?
2 comments

Closures are possible, yeah. But F# also has partial application(and currying). So you don't need to use a closure to do this.
Yes it’s possible.