diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..ee16934 --- /dev/null +++ b/Program.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConsoleApp1 +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello, world!"); + Console.ReadLine(); + } + } +}