Installed on /usr/local/share/dotnet. Trying to create a new F# project in Terminal. dotnet new console --language F# -o MyFSharpApp Further Reading If you need to uninstall the SDK when the release is out: How to Remove .NET Runtime and SDK on Mac Remove / Uninstall .NET SDK on macOS … [Read more...]
F#: Seq, List, Array, Map, Set. Which One to Use?
As part of continuing to learn F# for C# developers, there are several F# Collection Types a programmer must know with their functions. F# Collection Types Seq List Array Map Set After learning the F# collection types, the big question is when should you use one collection type over the other? Here are several guidelines available that I ran across that might help to decide. … [Read more...]
How to Setup Visual Studio 2017 or 2019 for F#
If you want to try F# programming in Visual Studio 2017 (or 2019 for that matter), here's what you might want to do to optimize Visual Studio to run optimally on your machine. From the menu, go to Tools and select Options. Under Debugging, set the Enable script debugging to True. Under Misc, set 64-bit F# Interactive to True (if you use 64-bit Windows OS). Set F# Interactive options to the … [Read more...]