I have just started taking a look into the F# programming language for the past few days.While going through the functions in F# I found something very interesting.Let’s consider a very simple function which multiplies two integers.
let mul x y = x * y;;
Now if I call mul 5 10 I get the output 50 [...]