public static void Main()
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine("hello " + name + ", I hop you are having a great day today");
Console.WriteLine("Press q to quit or anything else to continue");
restart = Console.ReadLine();