My solutions to the 2022 Advent of Code.
Solutions in F# until I get stuck, using C# and potentially Python as fallback languages.
The code I write may be bad.
> dotnet --version
7.0.100
> dotnet fsi --version
Microsoft (R) F# Interactive version 12.4.0.0 for F# 7.0
> dotnet script --version
1.4.0
> python --version
Python 3.10.8
For F# solutions dotnet fsi day01/solution.fsx
For F# solutions including assertions dotnet fsi -d:DEBUG day01/solution.fsx
For C# solutions dotnet script dayXX/solution.csx
For Python solutions python dayXX/solution.py