show/hide this revision's text 2 added 239 characters in body

Functions are first class citizens in F#. You can therefore pass them around just like you want to.

If you have a function like this:

let myFunction f =
    f 1 2 3

and f is function then the return value of myFunction is f applied to 1,2 and 3.

show/hide this revision's text 1

Functions are first class citizens in F#. You can therefore pass them around just like you want to.