Home » F# Lambda Expressions

F# Lambda Expressions

by Online Tutorials Library

F# Lambda Expressions

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 fun keyword to define lambda expression.

F# Lambda Expression Example

Output:

101 
Next TopicF# Inline Function

You may also like