Skip to content

Instantly share code, notes, and snippets.

@Mike-E-angelo
Created April 23, 2017 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mike-E-angelo/dbe2664d2f39f377e96477d2ff287446 to your computer and use it in GitHub Desktop.
Save Mike-E-angelo/dbe2664d2f39f377e96477d2ff287446 to your computer and use it in GitHub Desktop.
Murica
namespace Government
{
class America { }
class Citizen : America
{
const string TaxReturns = "Release us FFS!!!";
private int trumpEmotionalIQ = 0, trumpTolerance = 0;
private float trumpExperience = .03f;
public string Name { get; set; } = "Nick";
public int Age { get; set; } = 23;
public string Occupation { get; set; } = "Interaction Designer";
public bool IsMyPresident(America america) => trumpEmotionalIQ + trumpExperience + trumpTolerance > 50;
}
}
@Mike-E-angelo
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment