public static void Main()
{string choice = "this value doesnt matter";
while(choice != "q" && choice !="q")
{Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine("Hello " + name + ", I hope you have a good day.");
Console.WriteLine("Would you like to restart the program? press q to quit or anything else to keep going ");
choice = Console.ReadLine(); }