This commit is contained in:
2023-12-01 22:04:42 -05:00
parent 616f215158
commit c4a71c1451
7 changed files with 1135 additions and 36 deletions

9
AOC2023/AOC2023.csproj Normal file
View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AOC2023.Problems.Day01;
public class Trebuchet
{
}