Quick probably obvious question.
If I have:
void print(string input) { cout << input << endl; }
How do I call it like
The obvious way would be to call the function like this
print(string("Yo!"));