public static void Main()
Console.WriteLine("Hey commander, I'm X-R, the Experimental Ranger. Need anything?");
string userINPUT = Console.ReadLine();
userINPUT = userINPUT.ToLower();
if (userINPUT == "find emperor zurg")
Console.WriteLine("\nNo can do, his base is hidden by a powerful cloaking device.");
else if (userINPUT == "clean the kitchen")
Console.WriteLine("\nAwww, but I'm a real ranger now, you can't make me do janitor work anymore!");
else if (userINPUT == "ask warp darkmatter if he will be my valentine")
Console.WriteLine("\nAre you insane?! Wait, you're kidding. You are kidding, aren't you?");
else if (userINPUT == "exit" || userINPUT == "quit")
Console.WriteLine("\nSorry, I didn't get that, what did you say?");
Console.WriteLine("\nAnything else I can help with?");
userINPUT = Console.ReadLine();
userINPUT = userINPUT.ToLower();
while (userINPUT == userINPUT);
Console.WriteLine("\nUntil next time, ranger!");