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
Install the [.NET SDK](https://dotnet.microsoft.com/download). .NET is available for major Linux distributions and is typically installed with the system package manager of your distribution of choice.
13
13
@@ -21,19 +21,19 @@ printfn "Hello World from F#"
21
21
22
22
Now compile and run this F# script with the following command:
23
23
24
-
```
24
+
```bash
25
25
dotnet fsi hello.fsx
26
26
```
27
27
28
28
If this is your first time using .NET, there will be a short, one-time message about using the .NET SDK. After that, you'll see the following output in your console:
29
29
30
-
```
31
-
Hello World from F#
32
-
```
30
+
31
+
Hello World from F#
32
+
33
33
34
34
To create a project use
35
35
36
-
```
36
+
```bash
37
37
dotnet new console --language F#
38
38
dotnet run
39
39
```
@@ -46,9 +46,9 @@ For more information see [Getting started with the F# command line tools](https:
46
46
<articlemarkdown=1class="prose-card">
47
47
## Option 2: Install Visual Studio Code and Ionide
[Visual Studio Code](https://code.visualstudio.com) is a free, [open source](https://github.com/microsoft/vscode), cross platform source code editor
54
54
supporting [a lot of languages](https://code.visualstudio.com/docs/languages/overview).
@@ -71,7 +71,7 @@ Ionide works best if you use the .NET CLI to create your projects. You can learn
[JetBrains Rider](https://www.jetbrains.com/rider) is a cross-platform .NET IDE built using IntelliJ and ReSharper technology. It offers support for .NET applications on all platforms.
Install the [.NET SDK](https://dotnet.microsoft.com/download).
13
13
@@ -21,19 +21,17 @@ printfn "Hello World from F#"
21
21
22
22
Now compile and run this F# script with the following command:
23
23
24
-
```
24
+
```bash
25
25
dotnet fsi hello.fsx
26
26
```
27
27
28
28
If this is your first time using .NET Core, there will be a short, one-time message about using the .NET SDK. After that, you'll see the following output in your console:
29
29
30
-
```
31
-
Hello World from F#
32
-
```
30
+
Hello World from F#
33
31
34
32
To create a project use
35
33
36
-
```
34
+
```bash
37
35
dotnet new console --language F#
38
36
dotnet run
39
37
```
@@ -47,9 +45,9 @@ For more information see [Getting started with the F# command line tools](https:
47
45
<articlemarkdown=1class="prose-card">
48
46
## Option 2: Install Visual Studio Code and Ionide
[Visual Studio Code](https://code.visualstudio.com) is a free, [open source](https://github.com/microsoft/vscode), cross platform source code editor
55
53
supporting [a lot of languages](https://code.visualstudio.com/docs/languages/overview).
@@ -71,7 +69,7 @@ Ionide works best if you use the .NET CLI to create your projects. You can learn
[JetBrains Rider](https://www.jetbrains.com/rider) is a cross-platform .NET IDE built using IntelliJ and ReSharper technology. It offers support for .NET and .NET Core applications on all platforms.
76
74
77
75
You can install [JetBrains Rider from here](https://www.jetbrains.com/rider/download/).
Install the [.NET Core SDK](https://dotnet.microsoft.com/download). Once that is installed, you can begin using F#!
13
13
@@ -19,19 +19,17 @@ printfn "Hello World from F#"
19
19
20
20
Now compile and run this F# script with the following command:
21
21
22
-
```
22
+
```cmd
23
23
dotnet fsi hello.fsx
24
24
```
25
25
26
26
If this is your first time using .NET Core, there will be a short, one-time message about using the .NET SDK. After that, you'll see the following output in your console:
27
27
28
-
```
29
-
Hello World from F#
30
-
```
28
+
Hello World from F#
31
29
32
30
To create a project use
33
31
34
-
```
32
+
```cmd
35
33
dotnet new console --language F#
36
34
dotnet run
37
35
```
@@ -44,9 +42,9 @@ For more information see [Getting started with the F# command line tools](https:
44
42
<articlemarkdown=1class="prose-card">
45
43
## Option 2: Install Visual Studio Code and Ionide
Visual Studio Code](https://code.visualstudio.com) is a free, [open source](https://github.com/microsoft/vscode), cross platform source code editor
52
50
supporting [a lot of languages](https://code.visualstudio.com/docs/languages/overview).
@@ -67,19 +65,20 @@ Ionide works best if you use the .NET CLI to create your projects. You can learn
On Windows, F# programmers commonly use the Visual Studio tools for F#.
73
71
74
72
-[Visual Studio 2019](https://www.visualstudio.com/downloads/) comes with F# support in all its editions: Community, Professional and Enterprise. Community is completely free. See [Get started with F# in Visual Studio](https://docs.microsoft.com/dotnet/fsharp/get-started/get-started-visual-studio) for more information.
75
73
76
74
- If you already have an older version of Visual Studio, F# is also supported. But the quality of the tooling support and number of features is not as high as in Visual Studio 2019.
[JetBrains Rider](https://www.jetbrains.com/rider) is a cross-platform .NET IDE built using IntelliJ and ReSharper technology. It offers support for .NET and .NET Core applications on all platforms.
0 commit comments