show/hide this revision's text 3 added 118 characters in body

Is it possible to pass a reference to a function to another function in F#? Specifically, I'd like to pass lambda functions like

foo(fun x -> x ** 3)

More specifically, I need to know how I would refer to the passed function in a function that I wrote myself.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Pass functions in F#

Is it possible to pass a reference to a function to another function in F#? Specifically, I'd like to pass lambda functions like

foo(fun x -> x ** 3)