fsharp
Installation
SKILL.md
F#
F# is the functional sibling of C# on .NET. v9.0 (2025) brings Nullable Reference Types integration and better performance for list comprehensions.
When to Use
- Financial Tech: Correctness and domain modeling.
- Data Processing: Pipeline operator
|>and immutability by default. - Interpro: Seamlessly use any NuGet package.
Core Concepts
Discriminated Unions
type Shape = Circle of float | Rect of float * float.
Pipe Operator
data |> filter |> map.