Practice question from Advanced F# Programming

What F# operator creates partial function application?

let multiply = (*)
let double = multiply ____

Answer

2

Explanation

The partial application allows creating a new function by fixing some arguments of an existing function.

More questions from Quick: Advanced F# Programming