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}"); } } }