Last active
December 15, 2015 16:19
-
-
Save bryantp/5288743 to your computer and use it in GitHub Desktop.
Fixed so that it compiles.
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
#define LIGHTHOUSE | |
#define GIRL | |
#define MAN | |
#define CITY | |
#define GUARDIAN | |
#define REBEL | |
#define FOUNDER | |
#include <iostream> | |
int main(){ | |
enum bioChar{ | |
LIGHTHOUSE, | |
Anna = GIRL, | |
Booker = MAN, | |
Columbia = CITY, | |
Songbird = GUARDIAN, | |
Fitzroy = REBEL, | |
Comstock = FOUNDER}; | |
//I hope this quote is right. | |
std::cout << "There will always be a man, a lighthouse and a city" << std::endl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment