Ver Fonte

Preparing day 5

Lukas Angerer há 2 anos atrás
pai
commit
295d2195fe
2 ficheiros alterados com 22 adições e 0 exclusões
  1. 10 0
      Day5/Day5.csproj
  2. 12 0
      Day5/Program.cs

+ 10 - 0
Day5/Day5.csproj

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

+ 12 - 0
Day5/Program.cs

@@ -0,0 +1,12 @@
+using Day5;
+
+if (args.Length < 1)
+{
+    Console.WriteLine("Requires 1 args: inputFileName");
+    return -1;
+}
+
+var inputFile = args[0];
+
+
+return 0;