Untitled
unknown
plain_text
a year ago
315 B
4
Indexable
Never
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."); } } }