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.
Practice question from FSharp Programming Advanced
let compose f g x = ____ (g ____)["f","x"]
Function composition applies g to x first, then applies f to the result.