Practice question from FSharp Programming Advanced

Complete the function composition in F#:

let compose f g x = ____ (g ____)

Answer

["f","x"]

Explanation

Function composition applies g to x first, then applies f to the result.

More questions from Quick: FSharp Programming Advanced