Q&A
Ask and answer questions to make information more available to wider audiences.
Braxton Tiley @tileybraxton   22, May 2023 12:00 AM
let bindings in F#
What is let bindings in F#?
answers 1
 
Answer 1
Payton Leonard @leonardpayton   31, May 2023 12:20 PM
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()