diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-04 11:35:57 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-04 11:35:57 +0100 |
commit | bcbf17aa7eb192508ac94287e4c6b9a11e998c8a (patch) | |
tree | 1488b520fe5bc0855db30a83b4af0bc4f924a233 /aoc-2022-dotnet/Day03 | |
parent | 5e13267baaa454b228bfa9bd7361d2ed0784539f (diff) | |
download | gleam_aoc2020-bcbf17aa7eb192508ac94287e4c6b9a11e998c8a.tar.gz gleam_aoc2020-bcbf17aa7eb192508ac94287e4c6b9a11e998c8a.zip |
Add module declarations
Diffstat (limited to 'aoc-2022-dotnet/Day03')
-rw-r--r-- | aoc-2022-dotnet/Day03/Program.fs | 4 |
1 files changed, 3 insertions, 1 deletions
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 |