Y
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
marcle
1739 days ago
This could also be R, which allows for `function(x) {f(x)}` and (since version 4.1) `\(x) {f(x)}`.
link
ulrikrasmussen
1739 days ago
Thank you, fixed!
link