Create console project

This commit is contained in:
Andrew Cooper
2021-02-20 16:09:01 +11:00
parent 33042b654b
commit 89eb74fa3c
4 changed files with 57 additions and 0 deletions

View File

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