diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-28 18:02:46 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2022-12-28 18:02:46 +0100 |
commit | 68381d1c8bdd3d74f0924a47cf72809e40b34708 (patch) | |
tree | e113aea127a388cbccddb0cc8c0e1e40d44844b3 /aoc-2022-dotnet/Day21/Program.fs | |
parent | 4e6b4839f632cbd843da0f5fe39db00edc16f94c (diff) | |
download | gleam_aoc2020-68381d1c8bdd3d74f0924a47cf72809e40b34708.tar.gz gleam_aoc2020-68381d1c8bdd3d74f0924a47cf72809e40b34708.zip |
Remove redundant dependencies
Diffstat (limited to 'aoc-2022-dotnet/Day21/Program.fs')
-rw-r--r-- | aoc-2022-dotnet/Day21/Program.fs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/aoc-2022-dotnet/Day21/Program.fs b/aoc-2022-dotnet/Day21/Program.fs new file mode 100644 index 0000000..e5d8920 --- /dev/null +++ b/aoc-2022-dotnet/Day21/Program.fs @@ -0,0 +1,9 @@ +module Day21 + +open System.IO +open FParsec +open Common + +let test = File.ReadLines("test.txt") + +let input = File.ReadLines("input.txt") |