public static void Main()
Console.WriteLine("The door slides open, a haze of gas appears to indicate the airlock has been sealed.");
Console.WriteLine("Moving forward into flicking lights, the corridor splits two ways.");
Console.WriteLine("Should I go LEFT or RIGHT?.");
way = Console.ReadLine();
Console.WriteLine("You go left.");
Console.WriteLine("Walking along you come to a locked door.");
Console.WriteLine("A hand scanner blinks a dull blue light. A wrench lies at the bottom of the door.");
Console.WriteLine("Try the HAND SCANNER, or smash the door with the WRENCH?");
tool = Console.ReadLine();
if (tool=="hand scanner")
Console.WriteLine("You press your hand against the scanner.");
Console.WriteLine("Instantly, the lights go red, a siren blares.");
Console.WriteLine("The door behind you slams shut and the room fills with strange gas.");
Console.WriteLine("Gasping for air, your eyes begin to burn.");
Console.WriteLine("You fall unconscious.");
Console.WriteLine("Game over!");
Console.WriteLine("start again yes/no ?");
vAnswer = Console.ReadLine();
Console.WriteLine(".... program ended");