13 lines
359 B
C#
13 lines
359 B
C#
using System.Diagnostics;
|
|
|
|
internal class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
Console.Write("What's your name?: ");
|
|
string? name = Console.ReadLine();
|
|
if (name is null) return;
|
|
Console.WriteLine($"Hello, {name}!");
|
|
Console.WriteLine("The current time is " + DateTime.Now);
|
|
}
|
|
} |