From 68381d1c8bdd3d74f0924a47cf72809e40b34708 Mon Sep 17 00:00:00 2001 From: Tomasz Chojnacki Date: Wed, 28 Dec 2022 18:02:46 +0100 Subject: Remove redundant dependencies --- aoc-2022-dotnet/Day21/Day21.fsproj | 22 ++++++++++++++++++++++ aoc-2022-dotnet/Day21/Program.fs | 9 +++++++++ 2 files changed, 31 insertions(+) create mode 100644 aoc-2022-dotnet/Day21/Day21.fsproj create mode 100644 aoc-2022-dotnet/Day21/Program.fs (limited to 'aoc-2022-dotnet/Day21') diff --git a/aoc-2022-dotnet/Day21/Day21.fsproj b/aoc-2022-dotnet/Day21/Day21.fsproj new file mode 100644 index 0000000..b9a3919 --- /dev/null +++ b/aoc-2022-dotnet/Day21/Day21.fsproj @@ -0,0 +1,22 @@ + + + + Exe + net7.0 + + + + + Always + + + Always + + + + + + + + + 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") -- cgit v1.2.3