Quick probably obvious question.
If I have:
void print(string input) { cout << input << endl; }
How do I call it like
print(string ("Yo!"));
You need to make a (temporary) std::string object out of it.
std::string