Google News
logo
F# - Interview Questions
What is let Bindings in F#?
A binding associates an identifier with a value or function. You use the let keyword to bind a name to a value or function.
// Binding a value:
let identifier-or-pattern [: type] =expressionbody-expression
// Binding a function value:
let identifier parameter-list [: return-type ] =expressionbody-expression
Advertisement