hello world

master
Sean McArdle 2018-10-15 12:50:32 -07:00
parent ee4f073237
commit 09f5115e02
1 changed files with 4 additions and 1 deletions

View File

@ -7,8 +7,11 @@ namespace ArrSync
{ {
class Program class Program
{ {
static void Main(string[] args) static int Main(string[] args)
{ {
Console.WriteLine("Hello world!");
return 0;
} }
} }
} }