Hacker News new | ask | show | jobs
by chrismorgan 1739 days ago
> function(x) { f(x); }

Slight correction (presuming JavaScript): that’d be `function(x) { return f(x); }`.

2 comments

This could also be R, which allows for `function(x) {f(x)}` and (since version 4.1) `\(x) {f(x)}`.
Thank you, fixed!