Created
September 23, 2015 11:02
-
-
Save mplacona/0b9eb3deecc03f25beb3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
switch (gate) | |
{ | |
case "1": | |
Console.WriteLine("Darkness - the world of demons"); | |
break; | |
case "2": | |
Console.WriteLine("My guards are watching you"); | |
break; | |
case "3": | |
Console.WriteLine("Only evil lives here"); | |
break; | |
case "4": | |
Console.WriteLine("There's no way out"); | |
break; | |
case "5": | |
Console.WriteLine("Feel the fire"); | |
break; | |
case "6": | |
Console.WriteLine("Pick up your weapons and fight! FIGHT! FIGHT! And dance with the devil!"); | |
break; | |
default: | |
Console.WriteLine("THE GATES ARE OPENED Gate 1 Gate 2 Gate 3 Gate 4 Gate 5 Gate 6 - 6 - 6"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment