Skip to content

Instantly share code, notes, and snippets.

@banderson623
Created January 22, 2014 14:39
Show Gist options
  • Save banderson623/8559795 to your computer and use it in GitHub Desktop.
Save banderson623/8559795 to your computer and use it in GitHub Desktop.
class Cricket
{
static void Main(string[] args)
{
bool condition1 = true;
bool condition2 = true;
bool condition3 = true;
bool condition4 = true;
bool condition5 = true;
if (condition1)
{
if (condition2)
{
if (condition3)
{
if (condition4)
{
if (condition5)
{
Win();
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment