One of my deepest regrets is Ruby vs Rust
Would a closure wear arguments
{|like, this| }
Or
|like, this| {}
Conversation
Replying to
Eh, I've never really been a fan of putting the arguments in the body - multiline stuff always looks weird. I'd prefer:
- (like, this) -> {} (Java)
- (like, this) => {} (JS)
- fn(like, this) {} (SML)
- \(like, this) -> {} (Haskell)
- \(like, this) => {} (Idris)


