Created
September 28, 2014 01:25
-
-
Save stephenplusplus/4304477179b884b2e474 to your computer and use it in GitHub Desktop.
saySomethingCute
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
void Daughter::saySomethingCute(unsigned short int whatThing) const { | |
std::string cuteThings[5] = { | |
"hiii dayud", | |
"a-woo!", | |
"mommm", | |
"geooo", | |
"bae" | |
}; | |
if (whatThing > 4) { | |
whatThing = 0; | |
} | |
cout << cuteThings[whatThing]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My most proud code.