Add feat: challenge 5 for C# referesher

This commit is contained in:
Isaac Alter 2023-07-19 19:27:30 -06:00
parent 7c8c6ac5c5
commit bc495223d9
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,5 @@
int firstValue = 500;
int secondValue = 600;
int largerValue = Math.Max(firstValue, secondValue);
Console.WriteLine(largerValue);

View file

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