13 lines
352 B
C#
13 lines
352 B
C#
namespace console;
|
|
|
|
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);
|
|
}
|
|
} |