static void Main(string[] args) {
string menu = "**************\n" +
string prompt = "Please select the option: ";
string invalidPrompt = "Invalid Input. Please select the option again: ";
bool validSelection = true;
Console.Write(validSelection ? prompt : invalidPrompt);
string selection = Console.ReadLine();
Console.WriteLine("Selected: " + selection + " - New Game");
Console.WriteLine("Selected: " + selection + " - Load Game");
Console.WriteLine("Selected: " + selection + " - Options");
Console.WriteLine("Application successfully quit!");