Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save simpleprogrammer-shared/695bbd41244a3107c47fb1bf198e7538 to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/695bbd41244a3107c47fb1bf198e7538 to your computer and use it in GitHub Desktop.
Back to Basics: Mock Eliminating Patterns 1
isSpecial = false;
timeToLive = 50;
timeToLove = 1
penguinsHaveAttacked = true;
public ApocalypseScenario CreateNew()
{
if(isSpecial && timeToLive < timeToLove || penguinsHaveAttacked)
return new ApocalypseScenario("Penguin Apocalypse, Code Blue");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment