aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/Day21/Program.fs
diff options
context:
space:
mode:
Diffstat (limited to 'aoc-2022-dotnet/Day21/Program.fs')
-rw-r--r--aoc-2022-dotnet/Day21/Program.fs9
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")