Google News
logo
F# - Interview Questions
What is lambda expression in F#?
Lambda expression is an unnamed or anonymous function. Sometimes instead of defining a full name function, you may create a lambda expression. It optimizes the code. You must use a fun keyword to define lambda expression.
 
Example :
let result = (fun a -> a+1) 100  
printf "%d" result  
Advertisement