Skip to content

Instantly share code, notes, and snippets.

@azenla
Created November 27, 2017 05:33
Show Gist options
  • Save azenla/9d764ce07b9f583685e796a185b8d80a to your computer and use it in GitHub Desktop.
Save azenla/9d764ce07b9f583685e796a185b8d80a to your computer and use it in GitHub Desktop.
using System;
class RealDonaldTrump {
public static void Tweet(string message) {
Console.WriteLine("[@" + nameof(RealDonaldTrump) + "] " + message);
}
public static void BrandSwampMonster(string brand, string person) {
Tweet("Wow, " + brand + " " + person + " is a really terrible person! Sad!");
}
public static void BoostEconomy() {
Tweet("GDP up 3.2%!");
}
public static void DestroyMedia() {
Tweet("CNN is still #FakeNews! Sad!");
}
public static void KillSwampMonsters() {
BrandSwampMonster("Low Energy", "Jeb");
}
public static void Play4DChess() {
BoostEconomy();
DestroyMedia();
KillSwampMonsters();
}
}
class Presidency {
public static void Main(string[] args) {
RealDonaldTrump.Play4DChess();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment