Initial project structure

This commit is contained in:
Yaakov 2021-09-25 21:20:48 +10:00
parent 1fd7b8fae8
commit ec19c1d01a
4 changed files with 58 additions and 0 deletions

12
src/console/Program.cs Normal file
View file

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