diff options
-rw-r--r-- | aoc-2022-dotnet/Day01/Program.fs | 4 | ||||
-rw-r--r-- | aoc-2022-dotnet/Day02/Program.fs | 4 | ||||
-rw-r--r-- | aoc-2022-dotnet/Day03/Program.fs | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/aoc-2022-dotnet/Day01/Program.fs b/aoc-2022-dotnet/Day01/Program.fs index bf42670..71faaae 100644 --- a/aoc-2022-dotnet/Day01/Program.fs +++ b/aoc-2022-dotnet/Day01/Program.fs @@ -1,4 +1,6 @@ -open System.IO +module Day01 + +open System.IO open FSharpPlus let parseLine = diff --git a/aoc-2022-dotnet/Day02/Program.fs b/aoc-2022-dotnet/Day02/Program.fs index 7328ea8..0546195 100644 --- a/aoc-2022-dotnet/Day02/Program.fs +++ b/aoc-2022-dotnet/Day02/Program.fs @@ -1,4 +1,6 @@ -open System.IO +module Day02 + +open System.IO open FSharpPlus type Move = diff --git a/aoc-2022-dotnet/Day03/Program.fs b/aoc-2022-dotnet/Day03/Program.fs index f62d906..153e639 100644 --- a/aoc-2022-dotnet/Day03/Program.fs +++ b/aoc-2022-dotnet/Day03/Program.fs @@ -1,4 +1,6 @@ -open System.IO +module Day03 + +open System.IO let priority item = if 'a' <= item && item <= 'z' then |