theme changed
This commit is contained in:
13
labs/lab1_done/GreeterApp/Program.cs
Normal file
13
labs/lab1_done/GreeterApp/Program.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
class Greeter
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
string myName;
|
||||
Console.WriteLine("Please enter your name");
|
||||
myName = Console.ReadLine();
|
||||
Console.WriteLine("Hello, {0}", myName);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user