Remove sample program

This commit is contained in:
Andrew Cooper
2022-03-02 07:42:07 +11:00
parent 08f0ab0dc4
commit f61350ce04
2 changed files with 0 additions and 20 deletions

View File

@@ -1,13 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Games.Common\Games.Common.csproj" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@@ -1,7 +0,0 @@
using Games.Common.IO;
var io = new ConsoleIO();
var name = io.ReadString("What's your name");
io.WriteLine($"Hello, {name}");