From e92e691c91da05d47c21b7b53ad480ebb042faf1 Mon Sep 17 00:00:00 2001 From: Amitava Karan Date: Thu, 29 Jun 2017 17:45:14 +0530 Subject: [PATCH] TGA-2: print the name on console (#2) --- TestGithubApp/Program.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/TestGithubApp/Program.cs b/TestGithubApp/Program.cs index 9b3d13e..aec5fa8 100644 --- a/TestGithubApp/Program.cs +++ b/TestGithubApp/Program.cs @@ -10,6 +10,11 @@ class Program { static void Main(string[] args) { + Console.WriteLine("Hello world"); + Console.ReadKey(); + + var name = Console.ReadLine(); + Console.WriteLine($"Hello, {name}"); } } }