You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/fsharp/whats-new/fsharp-9.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: whats-new
9
9
10
10
F# 9 introduces a range of enhancements that make your programs safer, more resilient, and performant. This article highlights the major changes in F# 9, developed in the [F# open source code repository](https://github.com/dotnet/fsharp).
11
11
12
-
You can download the latest .NET SDK from the [.NET downloads page](https://dotnet.microsoft.com/download).
12
+
F# 9 is available in .NET 9. You can download the latest .NET SDK from the [.NET downloads page](https://dotnet.microsoft.com/download).
13
13
14
14
## Nullable reference types
15
15
@@ -146,7 +146,7 @@ let html =
146
146
}
147
147
```
148
148
149
-
Writing an empty computation expression will result in a call to the CE builder's `Zero` method.
149
+
Writing an empty computation expression will result in a call to the computation expression builder's `Zero` method.
150
150
151
151
This is a more natural syntax compared to the previously available `builder { () }`.
152
152
@@ -252,7 +252,7 @@ When you ran the tests with `dotnet test`, they would pass. Since the test funct
252
252
253
253
Now, with correct attribute enforcement, you will get an `error FS0842: This attribute is not valid for use on this language element`.
254
254
255
-
## Updates to the standard library (FSharp.Core)
255
+
## Updates to the [standard library (FSharp.Core)](https://fsharp.github.io/fsharp-core-docs/)
256
256
257
257
### Random functions for collections
258
258
@@ -512,4 +512,3 @@ The debugger visualizer in Visual Studio now works with F# projects.
512
512
Previously, signature help wasn't offered in a situation like the following, where a function in the middle of a pipeline already had a complex curried parameter (for example, a lambda) applied to it. Now, the signature tooltip shows up for the next parameter (`state`):
0 commit comments