From bcbf17aa7eb192508ac94287e4c6b9a11e998c8a Mon Sep 17 00:00:00 2001 From: Tomasz Chojnacki Date: Sun, 4 Dec 2022 11:35:57 +0100 Subject: Add module declarations --- aoc-2022-dotnet/Day01/Program.fs | 4 +++- aoc-2022-dotnet/Day02/Program.fs | 4 +++- 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 -- cgit v1.2.3