Add C# project

This commit is contained in:
Andrew Cooper
2021-04-17 18:49:34 +10:00
parent b9e35db335
commit ff40494de6
4 changed files with 56 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Stars
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}