From 09f5115e026fd184506b5a032a0c2c9b8479221c Mon Sep 17 00:00:00 2001 From: Sean McArdle Date: Mon, 15 Oct 2018 12:50:32 -0700 Subject: [PATCH] hello world --- ArrSync/Program.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ArrSync/Program.cs b/ArrSync/Program.cs index a674f61..3689bf2 100644 --- a/ArrSync/Program.cs +++ b/ArrSync/Program.cs @@ -7,8 +7,11 @@ namespace ArrSync { class Program { - static void Main(string[] args) + static int Main(string[] args) { + Console.WriteLine("Hello world!"); + + return 0; } } }