Untitled
unknown
plain_text
2 years ago
315 B
15
Indexable
using System;
namespace GreetingApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello! What's your name?");
string name = Console.ReadLine();
Console.WriteLine($"Hello, {name}! Welcome to the Greeting App.");
}
}
}
Editor is loading...