Untitled

 avatar
unknown
plain_text
2 years ago
315 B
7
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...