Binding is a process of associating of identifier or function to a value. Let keyword is used to bind an identifier to a value. In F#, we use let keyword to declare variable, function and private class members.
F# Let binding in function
We use let keyword to define a function in F#.
let ShowName() =
printf "Hello FSharp"
ShowName()