Solutions for http://adventofcode.com/2017/ in F#. F# newb, not sure if I am following best practices or conventions of the language. Feel free to give feedback.
- Install .NET Core
- run
dotnet restore
in a day folder - run
dotnet build
- Go to the source folder, and run
dotnet run
to see the result - Go to the test folder and run
dotnet test
to run all tests. You can also executedotnet watch test
For this project, I am using Visual Studio Code with the Ionide-fsharp plugin as my IDE.